+ 2
how to print 5+5=10
im new so Plz Tell me how to print 5+5=10 in Python
1 Réponse
+ 2
For printing things to the console, you could use the print() function with whatever you want within quotation marks (if it is a string).
Examples:
print("5+5=10")
print("5+5="+5+5) #Prints 5+5=10
Hope this helped! d: