Code syntax


With syntax:

foo = ["foo", "bar"]
def test_funct(foo):
    # comment comment comment
    for bar in foo:
        if len(bar) > 0:
            pass
        else:
            pass

test_funct(foo)

Without syntax:

foo = ["foo", "bar"]
def test_funct(foo):
    # comment comment comment
    for bar in foo:
        if len(bar) > 0:
            pass
        else:
            pass
test_funct(foo)

No comments :

Post a Comment