L1/10

Printing Your First Output

print() sends text to the console.

python
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:

text
Welcome to Python!

Be very careful with capitalization, spaces, and line breaks. The output must match exactly.