for issues in response.json()["issues"]:
p = (issues["fields"]["creator"]["emailAddress"])
rep+=(p[:-8]+"\n")
print(rep)
This will give me email with duplicates
abc@company.com
abc@company.com
cde@company.com
cde@company.com
I want to print the string with their count available in a table using python,Please help me with this
abc@company.com 2
cde@company.com 2