How would I find how many times each string appears in my list?
Say I have the word:
\"General Store\"
that is in my list like 20 t
Use the count method. For example:
count
(x, mylist.count(x)) for x in set(mylist)