课后作业29讲第四题的疑问
def file_replace(file_name,oldword,newword):f = open(file_name)
count = 0
string = f.read() #输出为字符串
string.replace('\n','')
f.seek(0,0)
for each in string: #统计出现的次数
if oldword == each:
count += 1
print('文件%s中共有%s个%s' %(file_name,count,oldword))
temp = input('您确定要将所有的%s替换为%s吗? \n 【Yes\\No】' %(oldword,newword))
if temp in ['yes','YES','Yes']: #确认是否更改
string.replace(oldword,newword) #更改字符串
f_new = open(file_name,'w') #重新覆盖写入
f_new.write(string)
f_new.close()
f.close()
file_name = input(r'请输入要打开的文件(C:\\test.txt):')
oldword = input('请输入要替换的字符:')
newword = input('请输入新的单词:')
file_replace(file_name,oldword,newword)
题目大意是将文件的某个字符更改为别的字符
改了很久,程序终于不报错了,但是文件的内容并没有更改{:5_99:} 求解答 def file_replace(file_name,oldword,newword):
f = open(file_name)
count = 0
string = f.read() #输出为字符串 # 这里读取完毕之后并没有关闭文件
string.replace('\n','')
f.seek(0,0)
for each in string: #统计出现的次数
if oldword == each:
count += 1
print('文件%s中共有%s个%s' %(file_name,count,oldword))
temp = input('您确定要将所有的%s替换为%s吗? \n 【Yes\\No】' %(oldword,newword))
if temp in ['yes','YES','Yes']: #确认是否更改
string.replace(oldword,newword) #更改字符串
f_new = open(file_name,'w') #重新覆盖写入 # 这里因为上面没有关闭文件,所以打开失败
f_new.write(string)
f_new.close()
f.close() 那是你要读的.txt文件编码问题。
.txt文件编码 有 uft-8 ansi unicode ........ 程序要识别所有编码还得要改进。默认.txt是ansi编码 读取完毕之后,记得及时关闭文件 yuxijian2020 发表于 2021-4-18 09:52
读取完毕之后,记得及时关闭文件
py 不是自动关的么 柿子饼同学 发表于 2021-4-18 10:57
py 不是自动关的么
with 语句才能自动关闭 yuxijian2020 发表于 2021-4-18 09:51
def file_replace(file_name,oldword,newword):
f = open(file_name)
count = 0
string = f.read()
string.replace('\n','')
f.seek(0,0)
f.close()
for each in string:
if oldword == each:
count += 1
print('文件%s中共有%s个%s' %(file_name,count,oldword))
temp = input('您确定要将所有的%s替换为%s吗? \n 【Yes\\No】' %(oldword,newword))
if temp in ['yes','YES','Yes']:
string.replace(oldword,newword)
f_new = open(file_name,'w')
f_new.write(string)
f_new.close()
f.close()
file_name = input(r'请输入要打开的文件(C:\\test.txt):')
oldword = input('请输入要替换的字符:')
newword = input('请输入新的单词:')
file_replace(file_name,oldword,newword)
加了,我把4改成5,文件中还是没改,也没报错 本帖最后由 白本羽 于 2021-4-18 14:34 编辑
ba21 发表于 2021-4-18 09:51
那是你要读的.txt文件编码问题。
.txt文件编码 有 uft-8 ansi unicode ........ 程序要识别所有编码还得要 ...
呃,所以怎么办呢{:5_99:} 请输入要打开的文件(C:\\test.txt):E:\\1.txt
请输入要替换的字符:4
请输入新的单词:5
文件E:\\1.txt中共有2个4
您确定要将所有的4替换为5吗?
【Yes\No】yes 白本羽 发表于 2021-4-18 14:33
呃,所以怎么办呢
string.replace(oldword,newword)
改成
string = string.replace(oldword,newword)
光string.replace 是不会改变string的内容的 白本羽 发表于 2021-4-18 14:33
呃,所以怎么办呢
先 建个文件夹,自已建几个.txt测试。
页:
[1]