0


二、(Python)with open与print笔记

**1.with open('本地路径','模式','编码方式') as 临时名字:
  模式:  **r:只读,无法write 
          r+:从头覆盖写,也可read 
          w:只写(清空全部!!!写),无法read 
          w+:比w多一个read? 
          a:只写(追加写),无法read 
          a+:比a多一个read?

总结一下:(唉,好乱感觉好难总结)

个人想法:只要读就用r;

              只要写就用a(保险点= =);

     又读又写就用a+

(b为以二进制方式打开非文本时加上即可)

2.print('内容',sep=以什么分隔内容必须多个,end=最后一个后面是啥,file=as打开的那个名称)

标签: python

本文转载自: https://blog.csdn.net/LuxuryZed/article/details/121288555
版权归原作者 LuxuryZed 所有, 如有侵权,请联系我们删除。

“二、(Python)with open与print笔记”的评论:

还没有评论