Chapter 6: Problem 12
Write a short program that uses a for loop to write the numbers 1 through 10 to a file.
Short Answer
Expert verified
Question: Write a short Python program that uses a `for` loop to write the numbers 1 through 10 to a file, with each number on a separate line.
Answer:
```python
for i in range(1, 11):
with open('numbers.txt', 'w') as file:
file.write(str(i) + '\n')
```