Enrol to start learning
Reading is open to everyone. Enrolling is free, and it is what unlocks the audio lessons, practice tests and progress tracking.
1.6. Try It Yourself
Interactive Audio Lesson
Unlock the classroom podcast
The transcript is above and free to read. A free account plays the conversation back.
Create a free accountToday, 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!
Unlock the classroom podcast
The transcript is above and free to read. A free account plays the conversation back.
Create a free accountNow 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!
Unlock the classroom podcast
The transcript is above and free to read. A free account plays the conversation back.
Create a free accountFinally, 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!
Overview
Short Summary
This section encourages learners to practice writing and executing simple Python programs.
Medium Summary
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.
Detailed Summary
Try It Yourself
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:
-
Printing their name using:
- pythonprint("My name is Alex.")This will introduce them to basic string output in Python.
-
Printing a number:
- pythonprint(100)This will give them a chance to see how numeric values are handled.
-
Printing a mathematical result:
- pythonprint(5 + 7)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.
Audio Book
Unlock the audio lesson
The script is above and free to read. A free account plays it back, in the voice you pick.
Create a free accountprint("My name is Alex.")Detailed Explanation
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.
Examples & Analogies
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.
Unlock the audio lesson
The script is above and free to read. A free account plays it back, in the voice you pick.
Create a free accountprint(100)Detailed Explanation
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.
Examples & Analogies
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.
Unlock the audio lesson
The script is above and free to read. A free account plays it back, in the voice you pick.
Create a free accountprint(5 + 7)Detailed Explanation
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.
Examples & Analogies
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.
--
Key Concepts
Core takeaways and short definitions to help you quickly recall the key ideas from this section.
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.
Examples
Memory Aids
Interactive tools to help you remember key concepts
Stories
Memory Tools
Flash Cards
Glossary
print()
A built-in Python function used to output text or values to the console.
string
A sequence of characters enclosed in quotation marks.
numeric value
A value representing a number, which can be integer or floating-point.
arithmetic operation
A mathematical operation like addition, subtraction, multiplication, or division.