简体   繁体   中英

How can i save this into a variable so that i can save it to a file

I have a bit of code which prints what I want to save but I cant save it as a variable because of the format. Please can you show me how to save this as a variable so that I can save it into a file

It wont let me add a picture but this is what I want to add to a variable (What its printing)

print(text[i],end="")
x = text[i]
with open("output.txt", 'w') as f:
    f.write(x)

or

with open("output.txt", 'w') as f:
    f.write(text[i])

Open a file:

f = open('filename','w')

Write a line of text to the file:

f.write(text[i])

And finally close the file:

f.close()

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM