我的这个python函数为什么输出没有结果

def in_fridge():
    try:
        count=fridge[wangted_food]
    except KeyError:
        count=0
    return count
fridge={'apples':10,'oranges':3,'milk':2}
wangted_food='apples'
in_fridge()


第五轻柔404
浏览 2248回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python