- Mar 18, 2004
- 6,883
- 0
- 71
When using "elif", do I have to indent that statement under the "if" statement?
Example:
if 0 > x > 5:
sky = blue
elif 6 > x > 10:
sky = red
??
Example:
if 0 > x > 5:
sky = blue
elif 6 > x > 10:
sky = red
??
