Hi Guys,
This challenge has been quite difficult so far.
I have the feeling I'm getting close yet I'm still stuck:
import re
def checkio(data):
if len(data) > 9 and re.match("[a-zA-Z0-9]+", data) == True:
return True
else:
return False
I have the feeling that it's in "re.match("[a-zA-Z0-9]+", data) == True:
But I'm not sure. Any help would be greatly appreciated. Love the site!
Created at: 2019/01/18 09:41; Updated at: 2019/01/22 09:05