+=运算符的问题
a += b?相當于?a =?a +?b
存在賦值,會改變變量的引用,但列表的 +=?比較特殊
?
# num_list列表的 +=?操作實質是調用了列表的extend()方法,所以引用不會改變
num_list += num_list
相當于 num_list.extend(num_list)
?
# num_list的引用發生變化
num_list = num_list + num_list
轉載于:https://www.cnblogs.com/Selling-fish-bears/p/10347705.html
總結
- 上一篇: Codeforces 1108 E2(线
- 下一篇: python多线程的两种写法