gpt4 book ai didi

python - 将 python 中的字符串与文本文件进行比较

转载 作者:太空宇宙 更新时间:2023-11-04 00:26:18 24 4
gpt4 key购买 nike

我有一个包含以下数据的文本文件:德里克,罗伯特,马修,

现在,我希望用户输入一个字符串,然后将该字符串与文本文件进行比较。

 fo = open("d:\\ar.txt", "r")
file_contents = fo.read()
print('Enter your password.')
typedPassword = input()
for i in file_contents:
if typedPassword == file_contents:
print('Access granted')
else:
print('Access denied')

但是,这似乎行不通。有什么想法吗?

最佳答案

试试这个:-

fo = open("poopy.txt", "r")
file_contents = fo.read()
print('Enter your password.')
typedPassword = input()
Flag = 0
for i in file_contents.split('\n'):
if typedPassword == i:
Flag = 1
if Flag == 1:
print('Access Granted')
else:
print('Access Denied')

关于python - 将 python 中的字符串与文本文件进行比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47323480/

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