gpt4 book ai didi

python - 在用户输入中搜索关键字,并在字典中找到对应的关键字

转载 作者:太空宇宙 更新时间:2023-11-03 20:31:52 30 4
gpt4 key购买 nike

我正在做一个搜索引擎,我尝试编写代码,以便当用户输入一些关键字时,它会在字典中搜索关键字并打印关键字和项目。

Canada = {'name': 'Canada', 'continent': 'North America', 'capital': 'Ottawa', 'currency': 'Canadian dollar',
'population': '32,268,240', 'area': '9,970,610'}
Laos = {'name': 'Laos', 'continent': 'Asia', 'capital': 'Vientiane', 'currency': 'Lao kip',
'population': '5,924,145', 'area': '236,800'}
Mexico = {'name': 'Mexico', 'continent': 'North America', 'capital': 'Mexico City', 'currency': 'Mexico peso',
'population': '107,029,400', 'area': '1,958,201'}
key_words = ("Canada", "Mexico", "Laos")
key = ("area", "population", "currency")
user_input = input("Type: ")

for word in user_input.split():
if word in key_words:
print()

你能帮我编码一下吗:例如:当用户输入:“墨西哥货币”时,将打印出:墨西哥比索,或者当用户输入:“老挝面积”时,将打印出236,800。

最佳答案

您需要设置一些规则供用户遵循,您可以从头开始构建模糊查询搜索引擎,但这不是今天会发生的事情。现在让用户指定他们想要什么,例如。 项目国家

Enter <query> <country>: currency mexico
>> Mexico pesos

您可以像这样重新构建代码,使用一个字典来保存所有数据,而不是将其分解为变量。

database = {
'canada': {
'name': 'Canada',
'continent': 'North America',
'capital': 'Ottawa',
'currency': 'Canadian dollar',
'population': '32,268,240',
'area': '9,970,610'
},
'laos' : {
'name': 'Laos',
'continent': 'Asia',
'capital': 'Vientiane',
'currency': 'Lao kip',
'population': '5,924,145',
'area': '236,800'
},
'mexico': {
'name': 'Mexico',
'continent': 'North America',
'capital': 'Mexico City',
'currency': 'Mexico peso',
'population': '107,029,400',
'area': '1,958,201'
}
}

user_input = input("Enter your query: ")
user_input = user_input.lower().split(' ')

# find country
country = None
for keyword in user_input:
if keyword in database:
# using .pop() removes the country from the list
country = user_input.pop(user_input.index(keyword))

# If the user entered a valid country
if country:
for keyword in user_input:
if keyword in database.get(country):
print(keyword, database[country][keyword])

else:
print('Could not find that country in the database')

编辑:更新了代码,以便您可以更加模糊并以任意顺序键入关键字/国家/地区并拥有多个关键字

示例:

Enter query: population and currency of mexico
>> currency Mexico peso
>> population 107,029,400

关于python - 在用户输入中搜索关键字,并在字典中找到对应的关键字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57450611/

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