# basics io

Your First print()

To display something on the screen in Python, we use print(). Whatever you put inside the parentheses, in quotes, gets shown exactly as written:

print("Hello, World!")

This prints: Hello, World!

Your turn: use print() to display the exact message Welcome to Python!

💡 need a hint?

pyb-io-print-hello.py
loading...