liujie6704 发表于 2021-4-4 17:39:57

关于文件系统

这个程序我为何运行不了?
def file_replace(file_name, rep_word, new_word):
    f_read = open(file_name)

    content = []
    count = 0

    for eachline in f_read:
      if rep_word in eachline:
            count = eachline.count(rep_word) #count感觉应该用这个
            eachline = eachline.replace(rep_word, new_word)
      content.append(eachline)   

    decide = input('\n文件 %s 中共有%s个【%s】\n您确定要把所有的【%s】替换为【%s】吗?\n【YES/NO】:' \
                   % (file_name, count, rep_word, rep_word, new_word))

    if decide in ['YES', 'Yes', 'yes']:
      f_write = open(file_name, 'w')
      f_write.writelines(content)
      f_write.close()

    f_read.close()


file_name = input('请输入文件名:')
rep_word = input('请输入需要替换的单词或字符:')
new_word = input('请输入新的单词或字符:')
file_replace(file_name, rep_word, new_word)

我在桌面建立一个文件:something1.txt。要求把'明天'替换为‘今天’
请输入文件名:something1.txt
请输入需要替换的单词或字符:'明天'
请输入新的单词或字符:'今天'
Traceback (most recent call last):
File "C:\Users\86130\Desktop\随机.py", line 28, in <module>
    file_replace(file_name, rep_word, new_word)
File "C:\Users\86130\Desktop\随机.py", line 8, in file_replace
    for eachline in f_read:
UnicodeDecodeError: 'gbk' codec can't decode byte 0x80 in position 20: illegal multibyte sequence
结果显示无法进行。

suchocolate 发表于 2021-4-4 18:04:22

本帖最后由 suchocolate 于 2021-4-4 18:08 编辑

试试第二行加个encoding:
f_read = open(file_name, encoding='utf-8')

liujie6704 发表于 2021-4-5 19:46:57

suchocolate 发表于 2021-4-4 18:04
试试第二行加个encoding:

谢谢!可以运行了!但不知道为何需要这样?另我让他把something1.txt中的‘明天’改为‘今天’,他说发现了0个‘明天’。
something1.txt只写了一句话:“明天,我要早起”

suchocolate 发表于 2021-4-6 13:34:27

liujie6704 发表于 2021-4-5 19:46
谢谢!可以运行了!但不知道为何需要这样?另我让他把something1.txt中的‘明天’改为‘今天’,他说发现 ...

系统默认使用了gbk打开文本,可以改,像pycharm在项目设定里。
页: [1]
查看完整版本: 关于文件系统