Computer Science

Find out the error(s) in following code fragment:


else = 21 - 5

Python Funda

8 Likes

Answer

else is a keyword in Python so it can't be used as a variable name.

Answered By

4 Likes


Related Questions