Here we need ast.
from ast import literal_eval
location_type = set([])
for i in df_google_map['type']:
mlist = literal_eval(i)
for item in mlist:
location_type.add(item)
Here we need ast.
from ast import literal_eval
location_type = set([])
for i in df_google_map['type']:
mlist = literal_eval(i)
for item in mlist:
location_type.add(item)