Python3-Cookbook-Study Notes chap1:數據結構和算法

1.數據結構的集合操做模塊 —— collectionspython 2.解壓可迭代對象賦值給多個變量 —— 使用星號表達式web # 剔除最高最低分,統計平均分 def drop_first_last(grades): first,*middle,last = grades # middle是一個列表類型變量 return avg(middle) 3.字符串分割 —— line.split
相關文章
相關標籤/搜索