This is the code I wrote.
n_alunos=input('')
x=0
idades=[]
alturas=[]
while x != n_alunos:
x+=1
n=raw_input('')
a=n.split(" ")
idades.append(a[0])
alturas.append(a[1])
How do I transform the elements of the 2 string lists to float?