Files
python-examples/flow.py
2023-02-25 01:48:44 +09:00

8 lines
93 B
Python
Executable File

#!/usr/bin/python
a = 10
if (a > 0):
print(a)
for a in reversed(range(5)):
print(a)