【Python】输入城市,输出省份

2022/4/13 9:42:31

本文主要是介绍【Python】输入城市,输出省份,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

from geopy.geocoders import Nominatim


def find_province(city):
    """
    :param city: "福州"
    :return:  “福建”
    """
    try:
        geolocator = Nominatim(user_agent='myuseragent')
        location = geolocator.geocode(city)
        province = re.findall(b'\w+\xe7\x9c\x81'.decode('utf-8'), str(location))
        return province[0].replace("省","")
    except:
        return city


if __name__ == '__main__':
    print(find_province("福州"))

 PS:  pip3 install  geopy



这篇关于【Python】输入城市,输出省份的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程