Please enable JavaScript to use CodeHS

CodeHS Glossary


Print Python

Calling `print` will display some text on the screen. e.g. ```python print "Hello" ``` will display `Hello` on the screen. You may sometimes also see ```python print("Hello") ``` which does the same thing.