Menu
Coddy logo textTech

The Language

Part of the Fundamentals section of Coddy's Python journey — lesson 1 of 77.

Python is one of the world's easiest and most popular programming languages.

challenge icon

Challenge

Beginner

Welcome to your first Python program! The code is already written for you.

What to do:

  1. Look at the code: print("Hello Python!")
  2. Press the "Run Code" button to execute it
  3. You should see "Hello Python!" appear in the output

Try it yourself

# Welcome! To print text in Python, use the print() function.
# Make sure to enclose your text in quotes and use parentheses.
# Example: print("Hello World")

# Run this code to see the result:
print("Hello Python!")

All lessons in Fundamentals