python using / when print code example
Example 1: how to use print in python
string_to_print = "Hello World"
print(string_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