import requests
import json
names={'katty','Shean','Rajat'};
for name in names:
request_string="http://api.genderize.io/?"+name
r=requests.get(request_string)
result=json.loads(r.content)
Error---
Traceback (most recent call last):
File "C:/Users/user/PycharmProjects/untitle
I am trying to split a specific column of csv into multiple column and then
appending the split values at the end of each row.
`enter code here`
import csv
fOpen1=open('Meta_D1.txt')
reader=csv.reader(fOpen1)
mylist=[elem[1].split(',') for elem in