for issues in response.json()["issues"]:
p = (issues["fields"]["creator"]["emailAddress"])
rep+=(p[:-8]+"\n")
print(rep)
这会给我带有重复的电子邮件
abc@company.com
abc@company.com
cde@company.com
cde@company.com
我想使用python打印带有计数的字符串,请帮我这个
abc@company.com 2
cde@company.com 2