poython print code example
Example 1: how do you use a print statement in python
print("What you would like to print")
Example 2: what is print in python
A print funtion is a way to print data in the console
use:
print("Hello World")
x = "Hello World"
print(x)
x = 5 + 5
print(str(x))