在练习python正则表达式时,为何re.search(str1,str2,re.L)无法使用,我的python版本的是3.6.1,错误应该re.L这个地方,为什么?
Changed in version 3.6: re.LOCALE can be used only with bytes patterns and is not compatible with re.ASCII.
你的str1和str2是字符串吧
import re
str1 = b"aa\ws"
str2 = b"aahssbbbb"
a = re.search(str1,str2,re.L)
这样可以