Wydrukuj w Pythonie
print("the sentence you want to print")
Expensive Emu
print("the sentence you want to print")
print("this is a print function, what ever you write inside this , it will display in output ")
#Print String
print("Hello")
#Print Integer
print(123)
# it is simple
print("Your Text")
print('datacamp','tutorial','on','python','print','function',sep='\n') #`\n` will put each word in a new line
datacamp tutorial on python print function