Easy
Basics
How do you print "Hello, World!" in Python?
Click to flip
print("Hello, World!")
The print() function outputs text to the console. It's one of the most basic and commonly used functions in Python.
Click to flip
print("Hello, World!")
The print() function outputs text to the console. It's one of the most basic and commonly used functions in Python.