Write a python program to create a dictionary named year whose
keys are month names and valuesare their corresponding number of
days.
Answers
Answered by
4
Answer:
Write a Python program to check multiple keys exists in a dictionary. Go to the editor Click me to see the sample solution. 34. Write a Python program to count number of items in a dictionary value that is a list. Go to the editor Click me to see the sample solution. 35. Write a Python program to sort Counter by value.
Answered by
6
Answer:
year={"Jan":31, "Feb": 28 , "March":31 , "April" : 30, "May": 31, "June": 30 , "July":31, "Aug" : 31 , "Sept" :30 , "Oct" : 31, "Nov" : 30, "Dec":31 }
Similar questions