I am pretty new to all of this so this might be a noobie question.. but I am looking to find length of dictionary values... but I do not know how this can be done.
Let dictionary be : dict={key:['value1','value2']}
If you know the key : print(len(dict[key]))
else : val=[len(i) for i in dict.values()] print(val[0]) # for printing length of 1st key value or length of values in keys if all keys have same amount of values.