Python刷题笔记:3-re模块(r () . .* .? .M .I match group() )
题目:(单选题)下列程序打印结果为( )import restr1 = "Python's features"str2 = re.match( r'(.*)on( .*?) .*',str1,re.M|re.I)print(str2.group(1))A Python B Pyth C thon's D Python's features分析:re模块实现正则的功能re.match(正则表达式,要匹配的字符串,[匹配模式])要匹配的字符串为str1...