jump_p 发表于 2020-5-29 12:07:47

第35讲第3题



这里判断两段文本是否相同,text_after[:-1]应该是表示新文本的全部内容吧?
既然textbox的返回值会追加一个换行符,那么新文本即使不做修改跟旧文本也一定不一样啊。


那么这里的“需要人工将这个行结束符忽略”是指手动删除这个换行符吗?

Twilight6 发表于 2020-5-29 12:16:49

不是删除 是忽略提示写的很清楚了,手动忽略

jump_p 发表于 2020-5-29 12:22:19

Twilight6 发表于 2020-5-29 12:16
不是删除 是忽略提示写的很清楚了,手动忽略

可是运行后我没有修改也会提示文本发生变化啊

Twilight6 发表于 2020-5-29 12:52:08

jump_p 发表于 2020-5-29 12:22
可是运行后我没有修改也会提示文本发生变化啊

你代码发我看看~ 完整的 不要图片

jump_p 发表于 2020-5-29 13:07:13

Twilight6 发表于 2020-5-29 12:52
你代码发我看看~ 完整的 不要图片

import easygui as g
import os

file_path = g.fileopenbox(default="*.txt")

with open(file_path) as old_file:
    title = os.path.basename(file_path)
    msg = "文件【%s】的内容如下:" % title
    text = old_file.read()
    text_after = g.textbox(msg, title, text)
   
if text != text_after[:-1]:
    # textbox 的返回值会追加一个换行符
    choice = g.buttonbox("检测到文件内容发生改变,请选择以下操作:", "警告", ("覆盖保存", "放弃保存", "另存为..."))
    if choice == "覆盖保存":
      with open(file_path, "w") as old_file:
            old_file.write(text_after[:-1])
    if choice == "放弃保存":
      pass
    if choice == "另存为...":
      another_path = g.filesavebox(default=".txt")
      if os.path.splitext(another_path) != '.txt':
            another_path += '.txt'
      with open(another_path, "w") as new_file:
            new_file.write(text_after[:-1])

Twilight6 发表于 2020-5-29 13:17:00

jump_p 发表于 2020-5-29 13:07


if text != text_after:
改成这样,最新版本的 textbox 是不会追加换行符了

jump_p 发表于 2020-5-29 13:30:53

Twilight6 发表于 2020-5-29 13:17
改成这样,最新版本的 textbox 是不会追加换行符了

感谢大神指导!

Twilight6 发表于 2020-5-29 13:32:05

jump_p 发表于 2020-5-29 13:30
感谢大神指导!

{:10_297:}
https://xxx.ilovefishc.com/forum/202005/27/132745rjvcvw1z2148jthd.gif
页: [1]
查看完整版本: 第35讲第3题