1、1,2,3,4,5怎样修改成01,02,03,04,05
d = "%02d" % i for i in range(1,5): d = "%02d" % i print d
数字形式转换
原文:http://www.cnblogs.com/iamjqy/p/7411047.html