Jun-14-2020, 04:02 PM
usernames = []
for username in usernames:
if username == 'admin':
print("Hello admin, would you like a status report?")
if username != 'admin':
print("Hello " + username + ", thank you for logging in again!")
else:
print("We need more users!")Error:what is expectedOutput:We need more users!
