7 lines
87 B
Python
7 lines
87 B
Python
i = 1
|
|
while i < 12:
|
|
fil.write(i*200)
|
|
time.sleep(300.0)
|
|
i += 1
|
|
fil.write(0)
|