Question
please see the details from the attachment, let me know if you have any question.
def validateUserName(userName):
# All usernames must be between 8 and 15 characters long
if(len(userName) lt; 8 or len(userName) gt; 15):
print(‘Username must be between 8 and 15 characters.’)…
Python Programming