blob: 5b09d94e8bfe3ded56eb3b600858eaaa26cc2d61 [file] [log] [blame]
# if, elif, and else
<the_if>if <the_cond>True:
<then_stmt>pass
elif <elif_cond>0:
<elif_stmt>pass
else:
<else_stmt>pass