python 中括号与冒号的作用
(1) 中括号[ ]:用于定义列表或引用列表、数组、字符串及元组中元素位置,如list1 = ['physics', 'chemistry', 1997, 2000],array1 = np.array([[1,2,3],[4,5,6]]) (二维数组第一下标对应行、第二下标对应列)(2)小括号():用于定义元组,如tul1 = ('a', 'b', 'c', 'd', 'e', [[