“pythonwrite to file” Ответ

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

pythonwrite to file

file = open("directory/sample.txt", "w")

file.write(“Hello World”) 

file.close()
 
Donald Duck

Ответы похожие на “pythonwrite to file”

Вопросы похожие на “pythonwrite to file”

Больше похожих ответов на “pythonwrite to file” по Python

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

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