I have a csv file with list of client details. I am pulling out a particular column from that file with this code:
import csv
details = []
with open("userlist.csv", "r", encoding="utf8") as csv_file:
csv_reader = csv.reader(csv_file, delimiter=',')
for lines in csv_reader:
description.append(lines[27])
print (details)
I am getting this output in a list for multiple rows:'
[Description]
sentence1[Issue Details]
*** Bunch of other data """timestamp":12:42PM
,emailaddress:xyz@gmail.com
', '[Description]
aaa[Issue Details]
*** Bunch of other data """timestamp":10:12AM,
emailaddress:mmm@gmail.com
'Now I want to extract the emailID of the user. So how should I do that?