Dictionaries
Example (Ask)
product = {
id: 1,
name: 'Product 1',
price: 40.5
}Example (Python)
product = {
'id': 1,
'name': 'Product 1',
'price': 40.5
}Last updated
product = {
id: 1,
name: 'Product 1',
price: 40.5
}product = {
'id': 1,
'name': 'Product 1',
'price': 40.5
}Last updated