需要解决的问题:要匹配字符串,字符串中字母的大小写不确定,如何匹配? 问题出现之前是使用字符串比较的方式,比如要匹配'abc',则用语句: if s == 'abc':#s为需要匹配的字符串 print '匹配成功\n' 现在的问题是s可能是Abc.ABC等等,所以需要大小写不敏感的匹配,如果把需要匹配的模式的大小写进行罗列,那即使是三个字母的短模式也是很麻烦,查了一下,正则表达式re模块中有个参数flags=re.I,这样就可以大小写不敏感的匹配了,示例如下: import re s = 'A
1.最简单的内置format函数: >>> format(1234567890,',') '1,234,567,890' 2.正则表达式: import re def formatNum(num): num=str(num) pattern=r'(\d+)(\d{3})((,\d{3})*)' while True: num,count=re.subn(pattern,r'\1,\2\3',num) if count==0: break return num if __name__=='
在运行yum时提示如下错误 There was a problem importing one of the Python modules required to run yum. The error leading to this problem was: No module named rpm 但是执行rpm命令可以成功.在网上查找了一些资料,有的讲说是python装了多个,或者当前Python版本过高. 一.通过命令whereis命令查询发现系统中只有一个Pytho