python write to program code example
Example 1: how to write your first python program
# The basics are messages such as Hello World which is displayed in the shell window.
# The line of code bellow is used to show strings or integers in the python terminal window.
print("Hello World")
Example 2: how to write something in python
print("This is where you put the message you want to write")