Learn Python 3
0/56
Lesson 1 of 56

Python Basics

Hello, World!

Every Python journey starts with print() — a function that displays text on the screen. Whatever you put inside the parentheses, wrapped in quotes, gets printed.

This one line is a complete, working Python program.

Your Task

Use print() to display exactly: Hello, World!

Type print("Hello, World!") — mind the capital H and W, and the comma.
main.py
Output
Press "Run Code" to execute your program.
🚀

Ready to run your code?

Create a free account to run code, get instant feedback, and save your progress. No credit card, free forever.

Create Free Account

Already have one? Log in