Python Forum
Appending To Files Challenge
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Appending To Files Challenge
#1
# I Write a program to append the times table for our poem in sample.txt .
So , this is all of my code

numbers = 1
for i in range(2, 12):
    while 13 >= numbers > 0:
        multiply = numbers * i
        print('| {0} Times {1} is {2} '.format(numbers, i, multiply))
        numbers += 1
print('=' * 21)

with open('times_table.txt', 'w') as times:
    for table in times:
        print(table, file=times)
And the output is :

Output:
| 1 Times 2 is 2 | 2 Times 2 is 4 | 3 Times 2 is 6 | 4 Times 2 is 8 | 5 Times 2 is 10 | 6 Times 2 is 12 | 7 Times 2 is 14 | 8 Times 2 is 16 | 9 Times 2 is 18 | 10 Times 2 is 20 | 11 Times 2 is 22 | 12 Times 2 is 24 | 13 Times 2 is 26 ========================================
But because of code at the end lines for files appending , I'm facing this error below :
Error:
Traceback (most recent call last): File "C:/Users/debug system/IdeaProjects/LearnPY/02/I_O - Challenge.py", line 11, in <module> for table in times: io.UnsupportedOperation: not readable
So , finally I don't know how to append this time table stuffs into a sample.txt file .
I really appreciate you all guys . If you can possibly help me with this .
Thanks .
Reply


Messages In This Thread
Appending To Files Challenge - by erfanakbari1 - Mar-26-2019, 06:17 PM
RE: Appending To Files Challenge - by ichabod801 - Mar-26-2019, 06:26 PM
RE: Appending To Files Challenge - by aankrose - Mar-26-2019, 08:37 PM
RE: Appending To Files Challenge - by perfringo - Mar-27-2019, 07:55 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Team Chooser Challenge kanchiongspider 3 2,366 Jun-02-2020, 04:02 AM
Last Post: kanchiongspider
  Meal cost challenge Emekadavid 3 2,857 Jun-01-2020, 02:01 PM
Last Post: Emekadavid
  Problem with a basic if challenge erfanakbari1 2 1,992 Oct-12-2018, 08:04 AM
Last Post: erfanakbari1
  trying an online challenge tozqo 8 5,959 Jun-21-2017, 07:07 AM
Last Post: Kebap

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020