gpt4 book ai didi

python - 在不使用 python 模块的情况下从 .csv 的列中查找最小值

转载 作者:行者123 更新时间:2023-12-03 23:39:19 26 4
gpt4 key购买 nike

我正在创建一个程序,可以帮助我从 .csv 文件中找到列中的最小值。但是,在我能做到这一点之前,我正在努力将数据分类到一个列表中。这是我所做的:

#open the file
csv_file = open("test_data.csv","r")
#print out all values in the last second column
for data in csv_file:
data = data.replace("\n","").split(",")[-2]
print(data)
这就是我得到的:
27
24
33
52
54
53
但是,我想以这种方式对它们进行排序,以便可以使用 min() 函数找到最小值。
[27,24,33,52,54,53]
任何建议将不胜感激,谢谢。 :)

最佳答案

为什么要附加到列表中?只需获得最低限度。

#open the file
csv_file = open("test_data.csv","r")
#print out all values in the last second column
results = []

for i, data in enumerate(csv_file):
data = data.replace("\n","").split(",")[-2]
if i == 0:
minimum = data
if data < minimum:
minimum = data

print(minimum)

关于python - 在不使用 python 模块的情况下从 .csv 的列中查找最小值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66865459/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com