Answers for "python print sting and value"

3

print string and variable python

x = input("Enter the first number: ")
y = input("Enter the second number: ")
z = int(x)+int(y)
#Just use a comma
print("The sum of the numbers you entered =",z)
Posted by: Guest on January-22-2021

Code answers related to "python print sting and value"

Python Answers by Framework

Browse Popular Code Answers by Language