Join the growing community of curious minds on IDNLearn.com. Our platform is designed to provide trustworthy and thorough answers to any questions you may have.
user_in = input ("Please enter your username: " )
if user_in in "0123456789":
print ("Username cannot contain numbers")
elif user_in in "?":
print ("Username cannot continue special character")
else:
print (" Welcome to your ghetto, {0}! ".format(user_in))