• Stuck on regex variant

Question related to mission House Password

 

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!