30-Days-Of-Python icon indicating copy to clipboard operation
30-Days-Of-Python copied to clipboard

Indentation issue in Day 9

Open jasperhabicht opened this issue 1 year ago • 2 comments

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

jasperhabicht avatar Jul 11 '24 17:07 jasperhabicht

I'm interested in this issue could you assign me this issue.

shindeakshay0211 avatar May 15 '25 10:05 shindeakshay0211

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.

LAbhilashKumar avatar May 17 '25 11:05 LAbhilashKumar