資料內容:
一、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'