5 lines
95 B
Python
5 lines
95 B
Python
import json
|
|
|
|
with open("products.json","r") as f:
|
|
products = json.load(f)
|
|
print("products") |