i am new to python and i am having trouble on python dictionaries this is my code:
dic = {"days":["mon","tue","wed"]}
print(dic[0])
the output am expecting is
"mon","tue","wed"
But i keep getting this error :
print(dic[0])
KeyError: 0
please help me... Thank You!