QP School

Full Version: Syntax changes in Python 3
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
# Python 2 syntax for print
# print "Hello, World!"

# Python 3 syntax for print
print("Hello, World!")