lesson 2
lesson 2
Printing
Printing
In Lesson 1, you wrote your first Python program. Now let's learn more about print().
The print() command tells Python to display something in the output.
For example:
print("Hello!")
print("I am learning Python!")
print("Python is fun!")
Each print() creates a new line in the output.
Change the three messages to your own messages.
Change all three messages, then press Run.
Next - Lesson 3: Variables