Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

Does this code work on vs code or pycharm to generate tables of 2-20? (Python)

+4 votes
asked Oct 31, 2021 by K SHAWN (170 points)
for i in range(2, 21):
    table = ''
    for j in range(1, 11):
        table += f"{i} X {j} = {i*j}\n"
    with open(f'tables 2-20/{i}.txt', 'w') as f:
        f.write(tables 2-20)

1 Answer

+1 vote
answered Nov 1, 2021 by White Coder (180 points)
I think this program is wrong. In pycharm it is not working.
commented Nov 14, 2021 by K SHAWN (170 points)
ok thank you very much
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...