定义一个电话薄,之后输入人名,查询他的号码,如果该人不在,返回 not found
phonedict={"A":123456,“B”:55586} name=input() print(phonedict.get(name,"not found"))