摘要:
原创转载请注明出处:https://www.cnblogs.com/agilestyle/p/12171406.html *args 星号 * 的参数 *args 会以元组的形式导入 1 def func(*args): 2 for arg in args: 3 print(arg) 4 5 6 f 阅读全文
摘要:
原创转载请注明出处:https://www.cnblogs.com/agilestyle/p/12170958.html List 遍历 1 l = [1, 2, 3, 4, 5, 6] 2 3 for i in l: 4 print(i) 5 6 for i in range(len(l)): 7 阅读全文
摘要:
原创转载请注明出处:https://www.cnblogs.com/agilestyle/p/12170632.html Python Data Type 列表和元组的区别 列表和元组都是有序的,可以存储任意数据类型的集合。 区别主要在于下面这两点 列表是动态的,长度可变,可以随意的增加、删减或改变 阅读全文