30-Days-Of-Python
30-Days-Of-Python copied to clipboard
Indentation issue in Day 9
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
I'm interested in this issue could you assign me this issue.
I've submitted a fix for the indentation issue mentioned in #554. Whenever you get a chance, could you please review it?
Let me know if anything needs to be improved.