Python 经常犯迷糊的用法

一、Python标准函数

1、enumerate

enumerate() 函数用于将一个可遍历的数据对象(如列表、元组或字符串)组合为一个索引序列,同时列出数据和数据下标,一般用在 for 循环当中。


>>>seasons = ['Spring', 'Summer', 'Fall', 'Winter']
>>> list(enumerate(seasons))
[(0, 'Spring'), (1, 'Summer'), (2, 'Fall'), (3, 'Winter')]
>>> list(enumerate(seasons, start=1))       # 下标从 1 开始
[(1, 'Spring'), (2, 'Summer'), (3, 'Fall'), (4, 'Winter')]

 

二、Numpy中的函数

1、np.newaxis

 np.newaxis 为 numpy.ndarray(多维数组)增加一个轴

>> x = np.arange(3)
>> x
array([0, 1, 2])
>> x.shape
(3,)
 
>> x[:, np.newaxis]
array([[0],
       [1],
       [2]])
 
>> x[:, None]
array([[0],
       [1],
       [2]])
 
>> x[:, np.newaxis].shape
 (3, 1)

>>> X = np.array([[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12]])
>>> X[:, 1]
array([2, 6, 10])       % 这里是一个行
>>> X[:, 1].shape       % X[:, 1] 的用法完全等同于一个行,而不是一个列,
(3, )
>>>X[:, 1][:, np.newaxis]
array([[2],
      [6],
      [10]])

2、NumPy 文件存取 tofile,fromfile, load,save

https://blog.csdn.net/kebu12345678/article/details/54837245

3、np.unique

该函数是去除数组中的重复数字,并进行排序之后输出。

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值