11 lines
341 B
Python
11 lines
341 B
Python
# Exeercise 5-8 Hello Admin
|
|
# Learning Objective: Selective if statement writing. (Reinforcement)
|
|
|
|
users = ['tex', 'spert', 'klumps20', 'porridgeboi', 'admin']
|
|
|
|
for user in users:
|
|
if user == 'admin':
|
|
print(f'Hello {user.title()}, would you like to see a report?')
|
|
else:
|
|
print(f'Hello {user.title()}, thank you for logging in again.')
|