Answers for "print string and value python"

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
0

print string python

Name = "Jack"
print(" Good morning! Mr.",Name)
Posted by: Guest on January-21-2021
0

python print string

print('My name is John Doe.')
#Result
#My name is John Doe.
Posted by: Guest on October-07-2021

Code answers related to "print string and value python"

Python Answers by Framework

Browse Popular Code Answers by Language