Files
python-examples/src0/flow.py
2025-01-09 14:30:26 +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)