So, I am writing a code that will cross check every word in my list with a list of common words, if the word in my Alist is = to the common word it will be removed. I am trying to keep it basics to terms I learnt to not confuse my studying.
Alist = ["the", "baby", "is", "so", "happy"]
common = ["the", "so"]
for x in Alist:
for i in common:
if i == Alist[x]:
Alist.remove(common[i])