parameters of print function in python code example
Example 1: how do you use a print statement in python
print("What you would like to print")
Example 2: print statement in python
#for print statements :
print(12345677890) # Integers
print(1234.567890) # Floats
print("hello") # Strings
or
print('hello')
print(False) # Boolean