Please enable JavaScript to use CodeHS

CodeHS Glossary


Print Python

Calling print will display some text on the screen.

e.g.

print "Hello"

will display Hello on the screen.

You may sometimes also see

print("Hello")

which does the same thing.