SEARCH
You are in browse mode. You must login to use MEMORY

   Log in to start


From course:

statistica/python

» Start this Course
(Practice similar questions for free)
Question:

Esprimi l'altezza dei primi 10 supereroi in metri ed elevato al quadrato

Author: federico volpe

esprimi l'altezza dei primi 10 supereroi in metri ed elevato al quadrato



Answer:

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