用语句 mydict={'a':1,'b':2,'c':3,'d':4} 定义了一个字典, 以下语句中, 可以输出字典键值的 是? ( )
print(mydict('c'))
print(mydict 'c')
mydict['c']
print(mydict{'c'})