CBSE Class 11 Informatics Practices Question 76 of 102

Python Programming Fundamentals — Question 37

Back to all questions
37
Question

Question 26(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.