Answers for "python output and input"

0

python output and input

>>> x = 5; y = 10
>>> print('The value of x is {} and y is {}'.format(x,y))
The value of x is 5 and y is 10
Posted by: Guest on October-25-2021
0

python output and input

print('I love {0} and {1}'.format('bread','butter'))
print('I love {1} and {0}'.format('bread','butter'))
Posted by: Guest on October-25-2021

Python Answers by Framework

Browse Popular Code Answers by Language