如何检查语句是否匹配(Zip 函数)

所以我目前正在为学校的登录功能做一个小项目。我试图将用户名和密码存储在列表中,并使用 [0:1] 进程检查它们。有没有一种方法可以检查用户输入是否与选定部分中的压缩列表匹配?抱歉,如果这非常简单,我对编码还是很陌生。


代码:


Profile = ['jc1', 'jc2', 'jc3', 'jc4', 'jc5']

Passwords = ['123','213','312','321','231']


Prof = zip(Profile[0:1],Passwords[0:1])


A = list(Prof)


JK = input('Please enter your username: ')


DK = input('Please enter your password: ')


Entry = zip(JK,DK)


B = list(Entry)


if B == A:


print('Welcome User: jc1')


print(A)



慕莱坞森
浏览 86回答 2
2回答

侃侃尔雅

这就是您可以存储profileName和password组合dictionary并检查用户输入的方式。profile_password_mapping = ['jc1':'123', 'jc2':'213', 'jc3':'312', 'jc4':'321', 'jc5':'231']profileName = input('Please enter your username: ')profilePassword = input('Please enter your password: ')if profileName in profile_password_mapping.keys() and  profile_password_mapping[profileName] == profilePassword:    print('Welcome User: {0}'.format(profileName))else:    print("User does not exist or the password is wrong.")

忽然笑

我想您可以使用两个列表的索引值来进行配置文件与密码匹配Profile = ['jc1', 'jc2', 'jc3', 'jc4', 'jc5']Passwords = ['123','213','312','321','231']JK = raw_input('Please enter your username: ')if JK in Profiles:    DK = raw_input('Please enter your password: ')    if DK in Passwords and Profiles.index(JK) == Password.index(DK):        print "Welcome user %s"%(JK)    else:        print "Incorrect Password"else:    print "User %s not in Profile list"%(JK)现在您可以使用列表,但是如果您了解dictionaries并尝试通过字典实现相同的功能会更好
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python