I want to print the key and its length.
So my desired result would be L1: 4, L2: 2, etc...
Here's the code I have so far. Any suggestions would be greatly appreciated
dic1 = {'L1': ['NY', 'CT', 'NH', 'MA'], 'L2': ['TX', 'NM'], 'L3': ['CA', 'WA', 'AZ'], 'L4': ['ND', 'SD','WY', 'ID'],
'L5':['UT'],'L6':['MN','WI','KY']}
for i in dic1.keys():