Practical Coding in Python

Learn to write and validate your own code

Darren Kessner, PhD

(revised September 1, 2025)

Previous: 0. Hello, world!

Hello

#
# hello.py
#

print("Hello, world!")

Output:

Hello, world!

Next: