鱼C论坛

 找回密码
 立即注册
查看: 1130|回复: 3

[已解决]unexpected character after line continuation character怎么解决

[复制链接]
发表于 2021-7-20 22:26:33 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
file_name = input("请输入文件名:")
old_word = input("请输入需要替换的单词或字符:")
new_word = input("请输入新的单词或字符:")
file = open(file_name,encoding ='utf-8')
storehouse = []
count = 0
for i in file:
    storehouse.append(i)
for each_line in storehouse:
    if old_word in each_line:
        count +=1
        each_line.replace(old_word,new_word)
print("文件",file_name,"中共有",count,"个【",old_word,"】")
decision = input("你确定要吧所有的【",old_word,"】替换为【",new_word,"】吗?"\n"【YES/NO】:")
if decision in ["Yes",'yes',"YES"]:
    file_write = open(file_name,'w')
    file_write.writelines(storehouse)
    file_write.close()
file.close()
第029讲:文件:一个任务 | 课后测试题及答案
https://fishc.com.cn/thread-45487-1-1.html
(出处: 鱼C论坛)
最后一题,在file_write = open(file_name,'w')这一行运行总会显示unexpected character after line continuation character
怎么办
最佳答案
2021-7-20 22:30:55
decision = input('你确定要吧所有的【",old_word,"】替换为【",new_word,"】吗?"\n"【YES/NO】:')
最外层应该使用单引号
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-7-20 22:30:55 | 显示全部楼层    本楼为最佳答案   
decision = input('你确定要吧所有的【",old_word,"】替换为【",new_word,"】吗?"\n"【YES/NO】:')
最外层应该使用单引号
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-7-20 22:54:02 | 显示全部楼层
fish_游鱼 发表于 2021-7-20 22:30
最外层应该使用单引号

谢谢 问题也解决
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-7-21 07:48:36 | 显示全部楼层

另一个方法decision = input("你确定要吧所有的【\",old_word,\"】替换为【\",new_word,\"】吗?\"\n\"【YES/NO】:")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-14 00:56

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表