8 lines
83 B
Python
8 lines
83 B
Python
if x == 0:
|
|
foo()
|
|
elif x == 1:
|
|
bar()
|
|
elif x == 2:
|
|
baz()
|
|
else:
|
|
boz()
|