Python is known for its clean, readable syntax. Output is done with print():
print("Good morning!")
# Output: Good morning!
A few things that make Python special:
#You can print multiple values:
print("Age:", 25)
# Output: Age: 25
print("Sum:", 3 + 4)
# Output: Sum: 7
Print your name and age — each on its own line:
Name: [your name]
Age: [your age]
Click "Run" to execute your code.