gpt4 book ai didi

Python 3 readline() 不起作用

转载 作者:行者123 更新时间:2023-12-01 02:30:52 24 4
gpt4 key购买 nike

文本文件:

username
password
other

代码:

filepass = datafile.readline(1)
filepass.rstrip('\n')
datafile.close()
entered_password = input("Enter Password")
if entered_password == filepass:
print ("Success")
else:
print ("Failure")

无论我输入什么内容,Python 总是显示“失败”。我需要做什么?提前致谢。

最佳答案

  1. 您的问题标题指出 readlines(),您的问题代码使用 readline()。两种不同的功能
  2. 您指定的 size/hint 参数最多读取字节数(在任何情况下都不是行 - 字节)。

你的意思可能是这样的

entered_password = datafile.readlines()[1].strip()

将一些明显的容错添加到您的代码中,但此处未指定。

关于Python 3 readline() 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46836284/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com