Search⌘ K

Test Your Data Manipulation Knowledge

Learn to use list and zip for geocoding.

We'll cover the following...

In the previous code widget, we derived geom using map(str).

Python 3.8
df['geom'] = df['lat'].map(str) + ',' + df['lon'].map(str)
...