Question 1:
x = 6
print(6)
print("6")
what is the out put for the above code??
Question 2:
value1 = eval(input('Please enter a number: '))
value2 = eval(input('Please enter another number: '))
sum = value1 + value2
print(value1, '+', value2, '=', sum)
what is output for the above code??
Question 3:
print(10/3, 3/10, 10//3, 3//10)
out put of the above print??
No comments:
Post a Comment