“Python записать в файл во время чтения” Ответ

Python записать в файл

file = open(“testfile.txt”,”w”) 
 
file.write(“Hello World”) 
file.write(“This is our new text file”) 
file.write(“and this is another line.”) 
file.write(“Why? Because we can.”) 
 
file.close() 
Misty Macaw

Python записать в файл во время чтения

# writin content of one file to the other
with open("source.txt", "r") as inFile, open("target.txt", "w") as outFile:
    for line in inFile:
        print(line.strip("\n"), file=outFile)
Experimental Hypothesis

Ответы похожие на “Python записать в файл во время чтения”

Вопросы похожие на “Python записать в файл во время чтения”

Больше похожих ответов на “Python записать в файл во время чтения” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования