Spaces:
Sleeping
Sleeping
Update your_script.py
Browse files- your_script.py +1 -1
your_script.py
CHANGED
|
@@ -5,7 +5,7 @@ Path('outputs').mkdir(exist_ok=True, parents=True)
|
|
| 5 |
|
| 6 |
# Open the file in append mode
|
| 7 |
with open("outputs/message.txt", "a") as file:
|
| 8 |
-
for i in range(
|
| 9 |
# Append the value of i to the file
|
| 10 |
file.write(str(i) + "\n")
|
| 11 |
print(f"Wrote {i}. Sleeping for 1 min")
|
|
|
|
| 5 |
|
| 6 |
# Open the file in append mode
|
| 7 |
with open("outputs/message.txt", "a") as file:
|
| 8 |
+
for i in range(2):
|
| 9 |
# Append the value of i to the file
|
| 10 |
file.write(str(i) + "\n")
|
| 11 |
print(f"Wrote {i}. Sleeping for 1 min")
|