我希望它从此文件中读取以检查输入的用户名和密码是否存在于文本文件列表中,但我需要在找到用户名的行后面的下一行检查密码。
file = open("usernamepasswordfile2.txt", "r")
lines = file.readlines()
username1 = input("Please enter your username: ")
password1 = input("Enter password: ")
if username1 in lines[0] or lines[0:900]:
print("access granted")
else:
print("access denied")
usernamepasswordfile2.txt
的内容:
zkhan
3J1R7r
tsd
f9kYrD
zkay
JYyNdC
hdend
mYR2OC
fkhan
JeL6u5
答案 0 :(得分:3)
如何创建一个字典(读the docs),其中键是用户名,值是密码?基本上,条目地图username --> password
?听起来不错?好的,这是我们如何做到的:
您的usernamepasswordfile2.txt
密码文件似乎具有以下结构:
奇数(1,3,5 ......)行包含您的用户名,甚至(2,4,6)行包含密码,对吗? (密码行包含用户在其右上方的密码)
您可以利用.readline()
将文件的偏移量推进到下一行的开头这一事实,因此您可以将迭代结合到文件(for line in f
上,如果你不做任何事......呃......特别......在文件的内容上逐行迭代,用循环内的手册readline()
来实现读取for line in f
中的奇数行(aka用户名)和下面password = f.readline().strip()
中的偶数行:
import pprint
users_passwords = dict() # Better user_passwords = {}, but let's be explicit
f = open("usernamepasswordfile2.txt", "r")
for line in f:
user = line.strip()
print("This is the line I read: %s, this is the stripped version: %s" %
(repr(line), line.strip()))
password = f.readline().strip()
print("Read user=%s, password=%s" % (user, password))
users_passwords[user] = password
f.close() # Yep, we have already loaded the contents
# in the `user_passwords` dict, so let's
# close it (we're not gonna need it anymore)
print("Fetched:\n%s" % pprint.pformat(users_passwords))
print("The usernames are the users_passwords keys:\n%s" %
pprint.pformat(users_passwords.keys()))
print("For instance, what is the password for username %s? %s"
% ('zkhan', users_passwords['zkhan']))
username1 = input("Please enter your username: ")
if username1 in users_passwords.keys():
print("access granted")
else:
print("access denied")
好的,那么这里发生了什么?
当您打开文件并执行for whatever in my_file:
时,您将遍历存储在whatever
包含该文件的行中的文件内容。但是,当您在readline
循环中执行for
时,您实际上是在推进一行。把它想象成:
第一次迭代:
for line in f
- >读取文件f
中的第1行(并准备阅读下一行)。
好的,这是一个用户名(文件的第一行)。
在for
内,您执行了f.readline()
- >读取(并前进一行)
第二行。这是一个密码(您在第一行中拥有的密码,截至目前,该密码存储在line
)
第二次迭代:
for line in f
- >读取文件的第3行(因为f.readline()
DID前进一行,还记得吗?)。这意味着line
包含第二个用户名。
在for
内,您执行f.readline()
- >返回文件的第4行,这意味着:line
中用户的密码(文件中的第二个用户)
所以你有这样的事情:
for line in f: # Lines 1 3 5 ...
# \ \ \
f.readline() # Lines 2 4 6 ...
根据需要泡沫,冲洗并重复(根据需要......好......直到你读完整个文件)
那是什么...... strip()
的事情?好吧,当你从文件中读取一行时,每一行也会返回结束字符(换行符:\n
)。但是你不想要那个角色,对吧?由于换行符是空白字符,因此您可以获得行的剥离版本。
由于你可能是出于学习目的而使用它,我建议你放置很多print
语句,这样你就可以完全按照正在发生的事情进行操作。
答案 1 :(得分:2)
只需更改
即可lines = file.readlines()
到
lines = file.read()
因为readlines()
在每个条目上都有“\ n”
答案 2 :(得分:1)
readlines()
保留行结尾,例如使用str.strip()
删除它们。
答案 3 :(得分:1)
我怀疑每行末尾的换行符\n
由readlines
保留。因此,如果您的用户名为'apple'
,则该列表不在['apple\n', 'boy\n', ...]
列表中
您可以通过使用
with open("usernamepasswordfile2.txt", "r") as file:
lines = [line.rstrip('\n') for line in file.readlines()]
答案 4 :(得分:1)
试试这个:
file = open("test.txt", "r")
lines = file.readlines()
username = "heyyy"
passw = "heyyyy"
for i in range(len(lines)):
lines[i] = lines[i].strip('\n')
for i in range(0,len(lines),2):
if username == lines[i]:
if passw == lines[i+1]:
print("acces")