第19048题
给定Python字典d,以下语句中能够输出数字9的是?
d = {'奥运奖牌':{'金牌':5,'银牌':4},'金牌':9,'银牌':4}
A

print(d['奥运奖牌']['金牌'])

B

print(d['金牌'])

C

print(d['奥运奖牌'][-1])

D

print(d['金牌'][1])