nateraw commited on
Commit
ac86c25
1 Parent(s): 9985e4e

Update your_script.py

Browse files
Files changed (1) hide show
  1. 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(20):
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")