data = [
    {
        "customer": "customer1",
        "product": "product1",
        "quantity": 1,
        "price": 1.0,
    },
]

# If the first customer is customer1, then print "Customer 1 is the first customer":
if data[0]["customer"] == "customer1":
    print("Customer 1 is the first customer")

