Light Mode
Dark Mode
Stuck on regex variant

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: Jan. 18, 2019, 9:41 a.m.
Updated: Jan. 22, 2019, 9:05 a.m.
1
3
User avatar
Skidoodel