标题: [问题求助] [己解决]最大值与最小值Python代码出错求助! [打印本页]
作者: keshun 时间: 2021-1-4 23:45 标题: [己解决]最大值与最小值Python代码出错求助!
本帖最后由 keshun 于 2021-1-9 01:54 编辑
列表内容
4H%
7.79%
24.44%
15.8%
13.36%
-3.28%
12.72%
4.19%
-2.33%
4.59%
10.03%
8.51%
25.87%
3.87%- a = float(datas['4H%'].max().strip('%'))
- b = float(datas['4H%'].min().strip('%'))
- print(a) # 为什么代码显示的是8.51,而不是25.87。
- print(b) # 请教大神显示-3.28
复制代码
作者: keshun 时间: 2021-1-9 01:54
- a = np.array([i.rstrip('%') for i in datas['4H%']],dtype=np.float32)
- print(max(a))
- print(min(a))
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |