this is the input array
Array= [{Client: 1, Budget: 520, Name: "Oscar"},{Client: 2, Budget: 430, Name: "Jane"}]
Hi, is there anyway to access this array in that way:
print(Array[0])
=> {Client: 1, Budget: 520, Name: "Oscar"}
print(Array[0][Budget])
=> 520
I have checked with dictionaries but apparently dictionaries requires " " ie {Name: "Oscar"} should be {'Name':"Oscar"} which is not out input