我敢肯定这是必须要问的,但我似乎找不到答案。
是否有与字典get相当的列表。也就是说,如果在相关列表索引中找不到该值,则返回None。
当前正在查看的列表
try:
quote = quotes_results[0]
except IndexError:
quote = None
我可以做一本字典,
quote = quotes_results.get('result')
如果该键没有值,它将返回None。
这不是在做
try:
quote = quotes_results['results']
except KeyError:
quote = None