user1 = "aqa code"
pass1 = "uzair123"
username = input("Enter username: ")
password = input("Enter password: ")
while username != user1:
print("Access denied: username is incorrect try again ")
username = input("Enter username again: ")
if username == user1:
print("access granted")
while password != pass1:
print("Password is still incorrect")
password=input("Enter password again: ")
if password == pass1:
print("Access granted")
while password != pass1:
print("Access denied,Password is incorrect")
password=input("Enter password again: ")
if password == pass1:
print("Access granted")
답변에 입력 할 때 대/소문자를 구분하지 않도록 username/user1에 .lower()를 어떻게 추가합니까? 도와주세요.python. .lower()를 추가하는 방법.
를 사용하는 경우 user1' 대신 '이름 == user1'의 – ettanany
가능한 복제의 [어떻게 변환 ==
raw_input()
를 사용 문자열을 소문자로 파이썬?] (http://stackoverflow.com/questions/6797984/how-to-convert-string-to-lowercase-in-python) – Nikaidoh