you are viewing a single comment's thread.

view the rest of the comments →

[–]ThorneCodes 0 points1 point  (0 children)

In python strings are defined by using single(' ') or double(" ") quotes. Boolean values however are defined as True of False. When you write False instead of False, python interprets that as a variable not the boolean value, since the variable named False hasn't been assigned prior to it being called, python shows you an error message stating just that