NoReservedWords

Incorrect

Every sequence of letters and digits starting with a letter or an underscore can be used as an identifier

Correct

Some character sequences are reserved for use as keywords and cannot be used as identifiers

Correction
Here is what's right.

Python has some keywords (e.g. return, if, continue) and some literals (True, False, and None) that are reserved and cannot be used by a programmer as identifiers. That means it is not possible to use these words to name variables, methods, or classes.

Stay up-to-date

Follow us on  twitter to hear about new misconceptions.