le print en python code example

Example 1: print python

#try it :)
print("Hello, world!")

#or 

#you can print variable
name = "Harry"
print(name)


name = "Harry";print(name) #all on the same line

Example 2: how to print messages in python

print("Hello World!")
# You can also print other data types
print(True)
print(3.14)
# And, you can print multiple things at a time
print("Hello", "World!")

Example 3: how to print in python

'''
print - > this is a statement
use brackets and quotation marks ("") or ('')
whatever you want to say put in the brackets
'''
print("Hello World")