mirror of
https://github.com/python/cpython.git
synced 2026-07-25 11:22:45 -04:00
12 lines
181 B
Python
12 lines
181 B
Python
if 1:
|
|
print("Hello " + "world")
|
|
if 0:
|
|
print("then")
|
|
print("clause")
|
|
elif 1:
|
|
pass
|
|
elif 1:
|
|
pass
|
|
else:
|
|
print("else-clause")
|