📅  最后修改于: 2022-03-11 14:45:47.687000             🧑  作者: Mango
Username = input("What is your username? ")
UsernameLength = len(Username)
if UsernameLength <= 10:
print(f'Your Username is {Username}')
elif UsernameLength >= 10:
print("Username is too long! (MAXIMUM IS 20 CHARACTERS)")
exit()