Q6
unknown
python
a year ago
1.5 kB
7
Indexable
# -------------------------------------------------------------------
# Global variables
# -------------------------------------------------------------------
userTable = [["LArmstrong3", "RedChair"],
["SBarrett7", "PurpleDesk"],
["EChisholm4", "YellowStool"],
["VDunn1", "OrangeFuton"],
["DElms5", "GreenCouch"],
["EFirsova13", "PinkMattress"],
["JGolland6", "GreenTable"],
["FHartley13", "BrownMirror"],
["DJohnstone12", "GoldBed"],
["GKirkhope8", "WhiteNights"],
["LLemon8", "BeigeDresser"],
["HMacCunn6", "GreyOttoman"],
["PNewland10", "BlackWardrobe"],
["AOldham5", "OrangeFuton"],
["JPook8", "YellowStool"]]
# =====> Write your code here
username = input("Please enter Username: ")
password = input("Please enter password: ")
# -------------------------------------------------------------------
# Main program
# -------------------------------------------------------------------
x = 0
# =====> Write your code here
for i in range (0,15):
if userTable[i][0] == username:
print("Welcome Mr", username)
else:
print("I don't know you sorry")
for e in range (0,15):
if userTable[e][0] == username:
print("Please wait till we load you in")
else:
print("wrong password")
Editor is loading...
Leave a Comment