mirror of
https://github.com/hastagAB/Awesome-Python-Scripts.git
synced 2024-11-23 20:11:07 +00:00
6 lines
87 B
Python
6 lines
87 B
Python
import geocoder
|
|
t=input("enter the location:")
|
|
g = geocoder.arcgis(t)
|
|
print(g.latlng)
|
|
|