错误列表索引必须是整数或切片,而不是str

时间:2018-01-04 03:57:31

标签: python string python-3.x list integer

根据标题,帮我解决错误。 我试图根据country_name中的country_name打印countryCode,这是在' rv'变量。 country_found是国家/地区列表中具有相同值的数据列表, 然后我尝试检索countryCode,我得到了错误

rv = "Indonesia"
country_lower = rv.lower()
countries = {
  "DATA": {
    "data": [{
        "countryId": "26",
        "countryCode": "AU",
        "name": "Australia"
    }, {
        "countryId": "17",
        "countryCode": "ID",
        "name": "Indonesia"
    }]
   }
} 
def take_first(predicate, iterable):
 for element in iterable:
    if predicate(element):
        yield element
        break

country_found = list(
 take_first(
    lambda e: e['name'].lower() == country_lower, 
    countries['DATA']['data']
 )
)

default_country_code = 'US'
country_code = (
  country_found['countryCode'] 
  if country_found 
  else default_country_code
)
print (country_code)

2 个答案:

答案 0 :(得分:3)

country_found是一个列表,但您正在尝试通过字符串索引获取项目:

country_found['countryCode']

你可能想要获得比赛的第一个结果:

country_code = country_found[0]['countryCode'] if country_found else default_country_code

但是,您是否真的需要将结果作为列表,如果您只使用next()该怎么办:

result = take_first(lambda e: e['name'].lower() == country_lower, 
                    countries['DATA']['data'])
try:
    country_code = next(result)['countryCode']
except StopIteration:
    country_code = default_country_code

答案 1 :(得分:0)

如果我正确地回答了你的问题,下面是你可能想要研究的内容。

default_country_code = 'US'
print(country_found) # ==> list [{'countryId': '17', 'name': 'Indonesia', 'countryCode': 'IN'}]
print(country_found[0]) # ==> dictionary {'countryId': '17', 'name': 'Indonesia', 'countryCode': 'IN'}
print(country_found[0].get('countryCode',default_country_code)) # get countryCode. If countryCode is not there, get the default_country_code