current_users = ['Niuniu','Niumei','GURR','LOLO'] new_users = ['GurR','Niu Ke Le','LoLo','Tuo Rui Chi'] for i in new_users: if i.lower() in [name.lower() for name in current_users ]:#在current_users列表循环,如果i小写和name小写一致,则print语句 print(f'The user name {i} has already been registered! Please change it an...