I am using this example to print zip codes given latitudes and longitudes: How do I get zipcodes from longitude and latitude on python?
The first answer got me what I needed. However, now I want to print all data and not just the first five rows (.head())
Even if I just change longlat.head() to longlat. I get this error: KeyError: 'postcode'
How do I get around this and get the function to print for all and not just the first 5?
I tried to change and get rid of the .head() part of the function but I get errors.