📌  相关文章
📜  如何在python代码示例中保存到文件

📅  最后修改于: 2022-03-11 14:47:13.232000             🧑  作者: Mango

代码示例1
with open('data.txt', 'w') as my_data_file:
   my_data_file.write(WhateverYourInputIs)
# After leaving the above block of code, the file is closed
# "w" overwrites the contents of the file