Advertisement
Guest User

Untitled

a guest
Nov 14th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. import json
  2.  
  3. data = []
  4. with open('business.json') as business:
  5. for line in business:
  6. data.append(json.loads(line))
  7. print(data)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement