Awesome-Python-Scripts/Location_Of_Adress/locator.py

6 lines
87 B
Python
Raw Normal View History

2018-10-02 21:09:34 +00:00
import geocoder
t=input("enter the location:")
g = geocoder.arcgis(t)
print(g.latlng)