摘要:
# 位置传递, 只有一个*时表示元组 def func_1(*args): print(args) func_1(1) # (1,) func_1(1, 2) # (1, 2) func_1(1, 2, 3) # (1, 2, 3) list = [4, 5, 6] func_1(list) # ( 阅读全文
摘要:
# 位置传递, 只有一个*时表示元组 def func_1(*args): print(args) func_1(1) # (1,) func_1(1, 2) # (1, 2) func_1(1, 2, 3) # (1, 2, 3) list = [4, 5, 6] func_1(list) # ( 阅读全文
摘要:
可变对象:地址不变,里面内容可以改变 (list,dict,set) 不可变对象:只要内容改变,必须改变地址 (int,str,float,tuple,frozzenset) # 可变 list1 = [1, 3, 5, 6, 7, 8] list2 = list1 list1.remove(1) 阅读全文
|