I have a list of users on the list and want to print for them some greetings but if I have in this list I should print some another text Hello Admin, would you like to see a status report?. Also I want to have some notification if the list is empty but I don't know how to do this.
users_site = []
for site in users_site:
    if site == 'Admin':
        print ("Hello Admin, would you like to see a status report?")
    if site == []:
        print ("We need more user's")
    else:
        print (f"Hello, {site}")
 
     
     
    