Answers for "python print a"

3

print python

x=str("Hello ")
y=str("world ")
print(x+y)
print(y+x)
z=int(40)
print("z="y)
Posted by: Guest on February-24-2020
1

python print

# Name
Harry = "Harry"
# Age
my_age = 8
# Math Problem
math = 4
problem = 9
print(Harry,my_age,math * problem)
Posted by: Guest on October-01-2020

Python Answers by Framework

Browse Popular Code Answers by Language