CBSE Class 11 Computer Science Question 72 of 98

Python Programming Fundamentals — Question 34

Back to all questions
34
Question

Question 23(a)

Find errors in the following code fragment.

a = 3
print(a)
b = 4
print(b)
s = a + b
print (s)
Answer

There are no errors in the above code fragment.