Answers for "print python *"

2

python print

x = 10
y = 5
print(x)			# 10
print("x is ",x)	# x is 10
print(x,y)			# 10 5
print("sum of", x, "and", y, "is", x+y)   # sum of 10 and 5 is 15
mCar = "A"
print(mCar * y) 	# AAAAA
Posted by: Guest on February-14-2021
2

python how to print

print("https://www.youtube.com/watch?v=DLzxrzFCyOs")
Posted by: Guest on January-13-2021
0

print in python

print("wathever you want!")
Posted by: Guest on February-05-2021

Python Answers by Framework

Browse Popular Code Answers by Language