Machine Learning (Python)
1、常用容器
(1) 列表(list):可以容纳任何数据类型.使用方法>>> jj=[]
>>> jj.append(1)
>>> jj.append('nice hat')
>>> jj
[1, 'nice hat']
也可以使用一条命令完成
>>>> jj = [1,'nice hat']
Python中也有数组,在循环中性能优于列表,但是只能存放一种数据类型。
(2) 字典 (dictio
原创
2016-11-28 21:52:32 ·
614 阅读 ·
0 评论