print()
is a function that "prints" or displays whatever is inside the parentheses in the terminal window.
For example, running print("Hello World!")
will output the string 'Hello World'
to the terminal window.
- See the possibilities with
print()
on w3schools.