标签:style blog color div re log
while i < len(str): print str[i]
每次循环迭代都要运行len()这个函数,所以可改为如下提高效率:
length = len(str) while i < length: print str[i]
一些提高脚本性能的tips,布布扣,bubuko.com
一些提高脚本性能的tips
原文地址:http://www.cnblogs.com/tonto/p/3822350.html