gpt4 book ai didi

python - 如何仅使用列表而不使用 Python 中的字典将城市与国家相关联?

转载 作者:太空宇宙 更新时间:2023-11-04 00:58:14 25 4
gpt4 key购买 nike

我有两个包含城市和国家/地区的列表。

List1=['Athens', 'Sidney']

List2=['Greece', 'Australia']

c=raw_ input('Enter a city: ')

雅典在希腊,悉尼在澳大利亚。

如何仅使用列表而不是字典来测试 Sidney 是否在澳大利亚?

最佳答案

这是你可以做的:

result = [country for city,country in zip(List1,List2) if city == c]
if result:
print('This city is in {}'.format(result[0]))
else:
print('City not found')

关于python - 如何仅使用列表而不使用 Python 中的字典将城市与国家相关联?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34044463/

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