I have a list of the dictionary:
my_list = [
{
'name': 'Angela',
'bid': 130
},
{
'name': 'James',
'bid': 145
},
{
'name': 'Jane',
'bid': 115
}
]
What I would like to be able to do is return the maximum value of capacity and print(f"The Winner is {name} with a bid of {bid}")