Writing on a file | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Writing on a file

Please i need help with the exercise of the file writing lesson: n = int(input()) file = open("numbers.txt", "w+") #tu código va aquí for i in range(n): file.write(str(i+1)+"\n") file.close f = open("numbers.txt", "r") print(f.read()) f.close() I don’t have any output. Why is this wrong? What am i doing wrong? Thanks for your help

7th Jun 2022, 8:56 PM
Mabel Zavala Moreira
2 Answers
+ 6
file.close needs the parentheses file.close() Maybe this was causing the issue?
7th Jun 2022, 9:05 PM
Apollo-Roboto
Apollo-Roboto - avatar
+ 1
🤦🏻‍♀️ yes that was the problem Apollo-Roboto thanks a lot 🙏
8th Jun 2022, 12:41 AM
Mabel Zavala Moreira