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 to write the numbers 1 through 10 to a file using a for loop.
Answer: The following program will write the numbers 1 through 10 to a file named "numbers.txt":
```python
file = open("numbers.txt", "w")
for i in range(1, 11):
file.write(str(i) + "\n")
file.close()
```