繁体   English   中英

Python 编号列表中元素的出现次数

[英]Python number the occurrences of elements in list

在处理列表时遇到问题

试图弄清楚如果元素出现多次时如何编号,从第二次出现我想在“@”附近添加数字:

例如:

['example@company.com', 'example@company.com', 'none@comapny.com','example@company.com']

想要的输出:

['example@company.com', 'example2@company.com', 'none@comapny.com','example3@company.com']

到目前为止的代码:

count_apper=Counter(mails_list)
    for values in count_apper.items():
        for mail in mails_list:
            if values[0]==mail:
                number+=1
                temp_var=mail.split("@") 
                temp_var[0]=temp_var[0]+f"{number}"
                temp_var="@".join(temp_var)
                print(temp_var)
            number=1

输出 :

example1@company.com
example2@company.com
example2@company.com
none2@company.com

我认为我的答案基于collections.Counter() 它会为你做一些工作。

import collections

addresses = ['example@company.com', 'example@company.com', 'none@comapny.com', 'example@company.com']

results = []

for address, count in collections.Counter(addresses).items():
    # add a "first" address as is
    results.append(address)

    # If there were other occurrences add them
    for i in range(1, count):
        results.append(f"{i+1}@".join(address.split("@")))

print(results)

这应该给你:

['example@company.com', 'example2@company.com', 'example3@company.com', 'none@comapny.com']

您可以迭代列表并使用dict来跟踪特定地址的出现次数。 要在@符号前添加文本,您可以使用str.split方法。 一种可能的实现如下所示。

addresses = ['example@company.com', 'example@company.com', 'none@comapny.com', 'example@company.com']
occurence_count = {}
transformed = []
for a in addresses:
    count = occurence_count.get(a, 0) + 1
    occurence_count[a] = count

    name, domain = a.split('@')
    if count > 1:
        transformed.append(f'{name}{count}@{domain}')
    else:
        transformed.append(a)

print(transformed) 

试试这个


j=['example@company.com', 'example@company.com', 'none@comapny.com','example@company.com']
count=1
k=j.copy()
for i in range(len(j)):
    
    if k.count(k[i])>1:
        m=[char for char in j[i]]
        m.insert(j[i].index('@'),str(count)
        )
        count+=1
        j[i]=''.join(m)
print (j)

我不知道 python 但我想这个逻辑会起作用

以数组格式读取字符串 findif s[int x]=@ 然后你可以做 s[int x-1]=1 并且接下来你可以做 ++s[x-1]

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM