Advertisement

TrimwebsolutionsTrimwebsolutions

Problem and Solutions

Can I create a histogram/bar graph from a list in python? typeError: expected str, found List python ?

By M.K. Verma · 3 May 2022

Can I create a histogram/bar graph from a list in python? typeError: expected str, found List python ?

You missed a [0], it should be:

word_frequency = Counter(" ".join(description_list[0][0]).split()).most_common(10)

Output:

enter image description here