Can I create a histogram/bar graph from a list in python? typeError: expected str, found List python ?
- Yogesh Kumar
- 03-May-2022
- 0
You missed a [0]
, it should be:
word_frequency = Counter(" ".join(description_list[0][0]).split()).most_common(10)
Output:

243 0
7
* Be the first to Make Comment