Python Flashcards 🐍

0 studied | 0% accuracy
6 cards
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.