mirror of
https://github.com/python/cpython.git
synced 2025-07-08 03:45:36 +00:00
11 lines
181 B
Python
11 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")
|