python中對於「+」符號,不一樣的數據類型表現的不一樣的行爲

1.對於int類型,「+」表示兩個數相加python 2 + 3 結果是5 2.對於str類型,「+」表示字符串的鏈接web 'ab' + 'cd' 結果是'abcd' 3.兩個list相加,表示兩個list相連svg python_list = [1, 2, 3] python_list + python_list 結果是 [1, 2, 3, 1, 2, 3] 4.對於python中的numpy
相關文章
相關標籤/搜索