Python3 正则表达式match方法 Python3 For Else 语句 Python3 正则表达式search方法 Python3 正则表达式match方法 #!/usr/bin/python3 import re line = "Cats are smarter than dogs" matchObj = re.match( r'(.*) are (.*?) .*', line, re.M|re.I) if matchObj: print ("matchObj.group() : ", matchObj.group()) print ("matchObj.group(1) : ", matchObj.group(1)) print ("matchObj.group(2) : ", matchObj.group(2)) else: print ("No match!!") Python3 For Else 语句 Python3 正则表达式search方法