gpt4 book ai didi

python - 如何从文本中提取国家?

转载 作者:太空狗 更新时间:2023-10-29 22:14:42 25 4
gpt4 key购买 nike

我使用 Python 3(我还安装了 Python 2),我想从短文本中提取国家或城市。例如,text = "I live in Spain"text = "United States (New York), United Kingdom (London)"

国家的答案:

  1. 西类牙
  2. [美国、英国]

我尝试安装 geography 但无法运行 pip install geography。我收到此错误:

Collecting geography Could not find a version that satisfies the requirement geography (from versions: ) No matching distribution found for geography

看起来 geography 只适用于 Python 2。

我也有 geopandas,但我不知道如何使用 geopandas 从文本中提取所需的信息。

最佳答案

你可以使用 pycountry 来完成你的任务(它也适用于 python 3):

pip 安装 pycountry

import pycountry
text = "United States (New York), United Kingdom (London)"
for country in pycountry.countries:
if country.name in text:
print(country.name)

关于python - 如何从文本中提取国家?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48607339/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com