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.
S
To find all of the lengths of the values in a dictionary you can do this:
lengths = [len(v) for v in d.values()]