Question:
Esprimi l'altezza dei primi 10 supereroi in metri ed elevato al quadrato
Author: federico volpeAnswer:
Height = pd.Series([float(h[4]) if h[4] else None for h in heroes], index=names) height.apply(lambda h: (h/100)**2)[:10]
0 / 5 Â (0 ratings)
1 answer(s) in total