python修改文件时,使用w模式会将原本的文件清空/覆盖.可以先用读(r)的方式打开,写到内存中,然后再用写(w)的方式打开. 替换文本中的taste 为 tasting Yesterday when I was young 昨日当我年少轻狂 The taste of life was sweet 生命的滋味是甜的 As rain upon my tongue #将文件读取到内存中 with open("./fileread.txt","r",encoding=&…
一.变量及条件判断 1.字符串.布尔类型.float.int类型,None都是不可变变量 2.字符串是不可变变量,不可变变量就是指定义之后不能修改它的值 3.count +=1和count=count+1是一样的 count-=1 count*=1 count/=1 内容补充: None是空,代表什么都没有,但是它不是空字符串 if 条件判断的 or 与 a or b a.b 只要一个为True条件就为真 and 且 a and b a.b都为真,条件才为真 in 在不在它里面 is 判断的是内…