imprimer en python
print("this is a print function, what ever you write inside this , it will display in output ")
Sanket s.s
print("this is a print function, what ever you write inside this , it will display in output ")
#for print statements :
print(12345677890) # Integers
print(1234.567890) # Floats
print("hello") # Strings
or
print('hello')
print(False) # Boolean
#Print
#Put a value
print('This is a print func')
print("Whatever you want")
print("dog")
print("hello world")
#this is an example and you can put anything in between the "s