Informatics Practices

Find errors in the following code fragment.

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

Python Funda

3 Likes

Answer

There are no errors in the above code fragment.

Answered By

1 Like


Related Questions