用 if 语句列出位置替换

list position replacement with if statement

我们可以在 python 列表上执行替换吗?

我有从 csv 文件导入的列表:

[['1', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0'], ['2', '0', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '1', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '0'], ['3', '0', '0', '0', '1', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '0', '0', '0', '0']]

上面列表中的拳头索引(标记为粗体)将成为客户 ID 后跟他们购买的商品,从上面的列表中我们可以看到客户 1 在第 12 列中以斜体标记的商品。

期望输出是:

costumer 1 purchased item 12 and item 22 and so it's for costumer 2 and 3

请注意,我已经尝试使用 panda 但没有用,而且我不确定如何在 for 循环中使用 if 语句。

此外,我使用了 rappid minner,它们逐列替换,其中包括要替换的 [0][0]。除了python还有其他解决方案吗?

这是我的代码:

import csv


csvfile = open("tran.csv", 'r')
reader = csv.reader(csvfile, delimiter=',')

my_list = list(reader)

a = len(my_list[1])
b = (my_list)


x=0
y=0

for name in my_list:
   print ("costummer", my_list[0][0], "buy", my_list[n][g])

csv 编写器更新:

csvdict = {words[0]:words[1:] for words in csv}
for x in csvdict.keys(): # iterate over the keys '1', '2', ....
    products = [index+1 for index,v in enumerate(csvdict[x]) if v == '1' ] # create list of purchases where the '1's are indexed

    f = open("trans.csv", 'w')
    result = ("costummer", x, "buy", products) 
    resultstr = (','.join([str(x) for x in hasil]))#I try to convert it to str.
    print (resultstr) #to check whether the conversion from list into str is working or not.
    f.write(resultstr) #try to write to csv file

这是一个"starting point",客户1会有一个额外的索引,那是你可以玩的东西。这可能并不重要。您可以添加一个 if 子句来处理它。

csv = [['1', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0'], ['2', '0', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '1', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '0'], ['3', '0', '0', '0', '1', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '0', '0', '0', '0']]

csvdict = {words[0]:words[1:] for words in csv}
for x in sorted(csvdict.keys()): # iterate over the keys '1', '2', ....
    products = [index+1 for index,v in enumerate(csvdict[x]) if v == '1' ] # create list of purchases where the '1's are indexed

    print "costummer", x, "purchased", ' '.join(['"item '+str(i)+'"' for i in B])