LearnPy

0streak
Overall Progress0%

Level 1: Hello World

Welcome to Python! Let's start with the traditional first program.

📚Concept:

Think of print() like talking to your computer. When you want the computer to show something on the screen, you use print().

💡Example:

print('Hi there!')  # Computer shows: Hi there!
print('My name is Bob')  # Computer shows: My name is Bob

Just put your text inside quotes and parentheses!

Task:

Write a program that prints 'Hello, World!' to the console.

Python Code Editor

Ctrl+Enter to run • Ctrl+R to reset

Level 1 of 15