Printing Your First Output
print() sends text to the console.
print("Hello, Python!")Here is what the example does:
print('Hello, Python!')displays the text "Hello, Python!".
The assignment changes the specific values, but the basic pattern is the same.
Assignment
Complete the starter code so the program does the following:
- Print the exact text
'Welcome to Python!'.
Your finished program should print exactly this output:
Welcome to Python!Be very careful with capitalization, spaces, and line breaks. The output must match exactly.