Skip to content

Instantly share code, notes, and snippets.

@deepak2431
Created June 28, 2019 14:07
Show Gist options
  • Save deepak2431/f43705e3de73a9b59fdf56c4367bea51 to your computer and use it in GitHub Desktop.
Save deepak2431/f43705e3de73a9b59fdf56c4367bea51 to your computer and use it in GitHub Desktop.
product_names = []
for p in range(0,len(products_list)):
p_str = products_list[p]
d = json.loads(p_str)
p_name = d["name"]
product_names.append(p_name)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment