print("What you would like to print")
#for print statements :
print(12345677890) # Integers
print(1234.567890) # Floats
print("hello") # Strings
or
print('hello')
print(False) # Boolean
print("print")
print('This is how to print a statement in python')
# type python on your command prompt and
# python sheel should appear, type
print("Ulala")
# to be better at python, practice cmd with python
print("-whatever you wanna write-")
print("Hello World")
Hello World!