In the code below, what is the reason for looping through to generate one list and then append one list to another list? Why not just use the first list that was generated?
Screen Link:
https://app.dataquest.io/m/289/introduction-to-numpy/4/nyc-taxi-airport-data
converted_taxi_list = []
for row in taxi_list:
converted_row = []
for item in row:
converted_row.append(float(item))