Computer Science

Find the errors in following code fragment:


print (x = y = 5)

Python Funda

43 Likes

Answer

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

Answered By

19 Likes


Related Questions