You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The pseudo-code example for Nested Conditions in Day 9 has an indentation issue. Although this can't be compiled as it is no proper python, it should adhere to corect indentation. So, instead of
# syntax
if condition:
code
if condition:
code
it should read
# syntax
if condition:
code
if condition:
code
The text was updated successfully, but these errors were encountered:
The pseudo-code example for Nested Conditions in Day 9 has an indentation issue. Although this can't be compiled as it is no proper python, it should adhere to corect indentation. So, instead of
it should read
The text was updated successfully, but these errors were encountered: