speed=[[\'Adam\', 50], [\'Bob\', 25], [\'Charlie\', 10]] def update(lst1): nl=[] for i in lst1: nl.append(i*5) return nl
Is the