def calculate_money_made(**trips): total_money_made = 0
for trip_id, trip from trips.items():
trip_revenue = trip.cost - trip.driver.cost
total_money_made += trip_revenue
return total_money_made
gives an error! cannot figure out File "script.py", line 41 for trip_id, trip from trips.items(): ^ SyntaxError: invalid syntax