用for循环打印数字从1开始 for a in range(1,num+1): 用split切割字符串可以用索引选择部分 int(el.split("_")[1]) range 第一个元素是起始位置,第二个是终止位置,第三个是步长 python3 range是原生态 python2 range是列表 python2 xrange和pyhton3 range是一样的 for循环迭代字典的话里面的字典在迭代中无法增和删除修改 1.解决的方法可以遍历字典的keys转化为列表 2.或者拷贝一个…
Python内置函数进制转换的用法 使用Python内置函数:bin().oct().int().hex()可实现进制转换. 先看Python官方文档中对这几个内置函数的描述: bin(x)Convert an integer number to a binary string. The result is a valid Python expression. If x is not a Python int object, it has to define an __index__() met…