Answers for "print python x,y"

1

how to print x in python

# 
#	printing a variable x via the print function 
#

# declaring x and setting it into 5
x = 5

# printing x
print(x)
Posted by: Guest on October-04-2021

Python Answers by Framework

Browse Popular Code Answers by Language