Answers for "ways of printing in python"

5

how to print something in python

print("hello guys")
Posted by: Guest on August-18-2020
7

python print

print("Hello, World!") #Output: Hello, World!

print(5+5) # Output:10

x=10
y=11
print(x+y) #Output: 21
Posted by: Guest on March-27-2020

Python Answers by Framework

Browse Popular Code Answers by Language