<td id="6000o"><rt id="6000o"></rt></td>
  • <sup id="6000o"><button id="6000o"></button></sup>
  • <optgroup id="6000o"></optgroup>
  • <strong id="6000o"></strong>
  • Python知識分享網 - 專業的Python學習網站 學Python,上Python222
    Python之路V2.0 PDF 下載
    發布于:2024-04-21 11:12:50
    (假如點擊沒反應,多刷新兩次就OK!)

    Python之路V2.0 PDF 下載   圖1

     

     

    資料內容:

     

    一、Python基礎
    Python基礎 主要總結Python常用內置函數;Python獨有的語法特性、關鍵詞 nonlocal , global 等;
    內置數據結構包括:列表(list), 字典(dict), 集合(set), 元組(tuple) 以及相關的高級模塊 collections
    Counter , namedtuple , defaultdict , heapq 模塊。目前共有 90 個小例子。
    1 求絕對值
    pd.pivot_table(df, index=['Manager', 'Rep'], values=['Price'], aggfunc=np.sum)
    from sklearn.cluster import KMeans
    KMeans( n_clusters=3 )絕對值或復數的模
     
    In [1]: abs(-6)
    Out[1]: 6

     

    2 元素都為真
    接受一個迭代器,如果迭代器的 所有元素 都為真,那么返回 True ,否則返回 False
     
    In [2]: all([1,0,3,6])
    Out[2]: False
    In [3]: all([1,2,3])
    Out[3]: True

     

    3 元素至少一個為真
    接受一個迭代器,如果迭代器里 至少有一個 元素為真,那么返回 True ,否則返回 False
     
    In [4]: any([0,0,0,[]])
    Out[4]: False
    In [5]: any([0,0,1])
    Out[5]: True

     

    4 ascii展示對象
    調用對象的repr() 方法,獲得該方法的返回值,如下例子返回值為字符串
     
    In [1]: class Student():
    ...: def __init__(self,id,name):
    ...: self.id = id
    ...: self.name = name
    ...: def __repr__(self):
    ...: return 'id = '+self.id +', name = '+self.name
    ...:
    ...:
    In [2]: xiaoming = Student(id='001',name='xiaoming')
    In [3]: print(xiaoming)
    id = 001, name = xiaoming
    In [4]: ascii(xiaoming)
    Out[4]: 'id = 001, name = xiaoming'

     

     

     

    欧美精品18videosex性欧美,老师的粉嫩小又紧水又多,久久国产高潮流白浆免费观看,国产睡熟迷奷系列网站
    <td id="6000o"><rt id="6000o"></rt></td>
  • <sup id="6000o"><button id="6000o"></button></sup>
  • <optgroup id="6000o"></optgroup>
  • <strong id="6000o"></strong>