Industry-relevant training in Business, Technology, and Design to help professionals and graduates upskill for real-world careers.
Fun, engaging games to boost memory, math fluency, typing speed, and English skillsβperfect for learners of all ages.
Enroll to start learning
Youβve not yet enrolled in this course. Please enroll for free to listen to audio lessons, classroom podcasts and take practice test.
Listen to a student-teacher conversation explaining the topic in a relatable way.
Signup and Enroll to the course for listening the Audio Lesson
Today, we are going to write our first program in Python! Let's start with something simple: printing your name. Can anyone tell me how we can do that?
I think we can use the `print()` function!
Excellent! The `print()` function is used to display information on the screen. Now, who can give me an example of how to print their name?
I would write: `print('My name is John.')`.
Great job! Remember, the text inside the quotes is called a string. Let's all try this out together! I'll give you a moment to run this code.
I did it! Now it shows 'My name is John' on the screen!
Awesome! Now, can anyone tell me why the `print()` function is useful?
It helps us see what our code is doing!
Exactly! To summarize: today we learned how to use the `print()` function to display our name. Nice work, everyone!
Signup and Enroll to the course for listening the Audio Lesson
Now that we've printed our names, letβs move on to printing a number. What command would we use?
We will still use the `print()` function!
Correct! But instead of a string, we can print a number directly. For example, we can write: `print(100)`. Who can tell me what this does?
It should display the number 100 on the screen!
Yes! Let's try it out together. I want everyone to write `print(100)` and run it.
Mine worked! It printed 100!
Excellent! Printing numbers opens the door to mathematical operations. Can anyone think of a reason why printing numbers might be useful in programming?
We can use it for calculations, or to show results of other operations!
Exactly! You are all doing wonderfully. Today we've learned how to print not just strings, but also numeric values. Letβs keep going!
Signup and Enroll to the course for listening the Audio Lesson
Finally, letβs combine what weβve learned so far and try printing a_math_result. We can do this with another `print()` command. Who can guess what we might print this time?
Maybe we can do some math, like `print(5 + 7)`?
Absolutely right! The expression `5 + 7` is evaluated, and print will display the result. Let's try typing that out.
I see it! It printed 12!
Wonderful! This shows how Python can handle arithmetic. Why do you think it is important to understand how to use these simple math operations in our code?
Because we might need to calculate things in our programs!
Exactly! Whether for games, data analysis, or more, math is everywhere in programming. Letβs recap what weβve learned today. We printed our names, we printed a number, and finally, we printed the result of a simple calculation. Great job, everyone!
Read a summary of the section's main ideas. Choose from Basic, Medium, or Detailed.
In this section, students will write and run their first Python programs, including printing their name, a number, and a simple math result. This hands-on approach reinforces learning through practical application.
This section focuses on practical exercises for students to gain hands-on experience with Python programming. Learners are tasked to write and execute three simple Python programs using the print()
function. The exercises include:
This will introduce them to basic string output in Python.
This will give them a chance to see how numeric values are handled.
This demonstrates how Python can perform simple arithmetic operations.
Through these exercises, students begin to familiarize themselves with code structure, syntax, and the immediate feedback that Python provides. Hands-on practice is essential for grasping fundamental concepts, and successfully running these scripts marks an important step in their Python learning journey.
Dive deep into the subject with an immersive audiobook experience.
Signup and Enroll to the course for listening the Audio Book
print("My name is Alex.")
This code uses the print()
function to display text on the screen. The text inside the parentheses and quotes is what will be shown. In this example, it outputs 'My name is Alex.' By changing the text inside the quotes, you can customize the output to display any name you'd like.
Think of this like introducing yourself at a party. When you say, 'Hi, my name is Alex,' everyone hears you. Similarly, when the program runs and reaches the print statement, it 'introduces' the name to anyone running the code.
Signup and Enroll to the course for listening the Audio Book
print(100)
In this chunk, the print()
function is called with the number 100 as an argument. When this code runs, it will simply display the number 100 on the screen. This shows that the print()
function is not limited to strings; it can also handle numbers, making it versatile for different types of output.
Imagine a teacher writing a number on the board for students to see. Just like the teacher communicates a number to the students visually, the print()
function communicates a number to the person running the code.
Signup and Enroll to the course for listening the Audio Book
print(5 + 7)
This example demonstrates the use of mathematical expressions within the print()
function. Here, 5 + 7
is calculated first, resulting in 12, which then passed to print()
to be displayed. It's a straightforward way to not just show numbers but also the results of calculations through programming.
Think of a simple math quiz where the teacher asks, 'What is 5 plus 7?' After the students calculate the answer, they shout '12!' The print()
function is like the teacher here, confirming the result we've derived from our calculation.
Learn essential terms and foundational ideas that form the basis of the topic.
Key Concepts
Print Function: The print()
function is used to output text and numbers.
Strings: Text enclosed in quotes that can be printed.
Numeric Values: Numbers that can be displayed directly.
Arithmetic Operations: Basic math operations that Python can perform.
See how the concepts apply in real-world scenarios to understand their practical implications.
Printing a name: print('My name is Alex.')
outputs 'My name is Alex.'
Printing a number: print(100)
outputs '100'.
Performing math: print(5 + 7)
outputs '12'.
Use mnemonics, acronyms, or visual cues to help remember key information more easily.
When you want your message to show, type print and let it flow.
Imagine a character named Print who loves to tell everyone about numbers and messages, spreading joy with every line they print!
To remember how to print: 'P for Print, I for Into the console, N for Numbers, T for Text!'
Review key concepts with flashcards.
Review the Definitions for terms.
Term: print()
Definition:
A built-in Python function used to output text or values to the console.
Term: string
Definition:
A sequence of characters enclosed in quotation marks.
Term: numeric value
Definition:
A value representing a number, which can be integer or floating-point.
Term: arithmetic operation
Definition:
A mathematical operation like addition, subtraction, multiplication, or division.