python如何无视大小写?下面给大家带来两种方法:
1.正则表达式,使用IGNORECASE标志
>>> import re >>> m = re.search('multi', 'A mUltiCased string', re.IGNORECASE) >>> bool(m)