Computer Science
What is the problem with the following code fragment?
name = "Prejith"
age = 26
print ("Your name & age are ", name + age)
Related Questions
What will be the output produced by following code fragment:
side = int(input('side') ) #side given as 7 area = side * side print (side, area)
What is the problem with the following code fragment?
a = 3 print(a) b = 4 print(b) s = a + b print(s)
What is the problem with the following code fragment?
a = 3 s = a + 10 a = "New" q = a / 10
Predict the output:
x = 40 y = x + 1 x = 20, y + x print (x, y)