姆咪==
一二三四五
def isValid(self, word: str) -> bool:
return len(word)>=3 and all([ord('0')<=ord(c)<=ord('9') or ord('A')<=ord(c
)<=ord('Z') or ord('a')<=ord(c)<=ord('z') for c in word]) and any([c in ['a','
e','i','o','u', 'A', 'E', 'I', 'O', 'U'] for c in word]) and any([c in ['b','c
','d','f','g','h','j','k','l','m','n','p','q','r','s','t','v','w','x','y','z',
'B','C','D','F','G','H','J','K','L','M','N','P','Q','R','S','T','V','W','X','Y
','Z'] for c in word])