import pandas as pd
import csv,json
data=pd.read_csv("Instagram.csv")
print(data)
print("Converted JSON file below :")
print (json.dumps(list(csv.reader(open('Instagram.csv')))))
#clcoding.com
Impressions Home Hashtags Explore Other Saves
0 3920 2586 1028 619 56 98
1 5394 2727 1838 1174 78 194
2 4021 2085 1188 0 533 41
3 4528 2700 621 932 73 172
Converted JSON file below :
[["Impressions", "Home", "Hashtags", "Explore", "Other", "Saves"], ["3920", "2586", "1028", "619", "56", "98"], ["5394", "2727", "1838", "1174", "78", "194"], ["4021", "2085", "1188", "0", "533", "41"], ["4528", "2700", "621", "932", "73", "172"]]
0 Comments:
Post a Comment