First Python Program — a practical guide to first Python program with clear examples you can reuse in real projects.
Python Tutorial Series (6/95). Prefer one article? Read the complete Python tutorial.
Short description
Create a `.py` file, add a print statement, and run it from the terminal or your IDE.
hello.py
name = 'Imtiyaj'
print(f'Hello, {name}! Welcome to Python')
# Run: python hello.py