Python Output to Screen
The print function helps us output the information we need to the console. Let's output some string:
print('hello')
Now let's output the number:
print(1)
Print a string with your name to the console.
Print any arbitrary number to the console.