Cetak di Python
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 ")
# Printing, the basics of Python...
# Btw this is how you print a statement or anything in the terminal/console.
print("your printing statement")
# Above basically makes use of a built-in function called print which just
# shows your writing in the console. You can print variables also using print.
# Very easy to use. Hope I helped. Thanks!
# By SuperScripts (yea, i changed my username AGAIN...)
print("Hey! How are you doing?")
## formatted string literal
answer = "Well!"
print(f"Hey! How are you doing? {answer}")
# the print commmand will write anything in your out put box
print("hello world")
Print("Hello") Print("World") #Output: Hello World!
print(5+5) # Output:10
x=10
y=11
print(x+y) #Output: 21