Python - Minor typo in example

Python 5. Conditionals & Control Flow #13

Unlike if, else doesn’t depend on an expression. For example:

if 8 > 9:
print “I don’t printed!”
else:
print “I get printed!”

“I don’t printed!” should be changed to “I don’t get printed!”.
In the next part(#14) the error is fixed.

1 Like