Advertisement
AskTomorrow

Untitled

Feb 28th, 2020
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. def nickname(s):
  2.     return len(s) >= 4 and len(s) <= 12 and s.find(' ') == -1 and not(s.isnumeric()) and not(s[0].isnumeric())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement