python中CSV文件的所有列的唯一元素,而无需使用pandas

发布于 2025-01-23 19:35:02 字数 564 浏览 0 评论 0原文

我正在尝试获取CSV中所有列的唯一值。我正在获取所有列的列号并创建集合,并尝试浏览CSV数据并找到唯一的列。但是第二个循环仅执行一次。

decoded_file = data_file.read().decode('utf-8')
reader = csv.reader(decoded_file.splitlines(),
                            delimiter=',')
list_reader = list(reader)
data = iter(list_reader)
next(data) #skipping the header
col_number = len(next(data))
col_sets = [set() for i in range(col_number)]

for col in range(col_number):
   for new_row in data:
       col_sets[col].add(new_row[col])
   print(col_sets[col])

我需要为每列获取所有唯一值,并将其添加到col_sets以访问它。最好的方法是什么?

I am trying to get the unique values of all the columns in the CSV. I am getting the column number and creating sets for all the columns and trying to go through the csv data and find the unique columns. But the second loop executes only once.

decoded_file = data_file.read().decode('utf-8')
reader = csv.reader(decoded_file.splitlines(),
                            delimiter=',')
list_reader = list(reader)
data = iter(list_reader)
next(data) #skipping the header
col_number = len(next(data))
col_sets = [set() for i in range(col_number)]

for col in range(col_number):
   for new_row in data:
       col_sets[col].add(new_row[col])
   print(col_sets[col])

I need to get all the unique values for each column and add it to col_sets to access it. What is the best way to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

2025-01-30 19:35:02

一切都很好,但是您应该只更改迭代顺序。


for new_row in data:
    for col in range(col_number):
        col_sets[col].add(new_row[col])
print(col_sets)

Everything is good, but you should just change the order of iterations.


for new_row in data:
    for col in range(col_number):
        col_sets[col].add(new_row[col])
print(col_sets)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文