Computer Science

Find the errors in following code fragment:


print (x = y = 5)

Python Funda

33 Likes

Answer

Python doesn't allow assignment of variables while they are getting printed.

Answered By

15 Likes


Related Questions