Skip to content
Advertisement

Python – trying to Calculate the distance between Starting post code and Destination post code for each entry of my data. Issue with Country [closed]

I have the following table:

Country Starting Post Code Destination post Code
US 99685 65039
GB AB15 DD9

That I am trying to run the following query to return the road miles between the starting and end postcodes, but as I am learning Python I am struggling to get it to pass in the Country from the table below. I can use the commented-out code to pass either ‘GB’ or ‘US’ but I need to have this variable built in from the table.

JavaScript

The issue is with the following line:

JavaScript

The error traceback I get is as follows:

JavaScript

Thanks for any help

Advertisement

Answer

I took the liberty of modifying the column labels to unify their names, please make sure they match your data files.

JavaScript

I must warn you that using apply is quite inneficient and may scale badly if you have a millions of rows.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement