Computer Science, asked by aaryanbansal4974, 9 months ago

punctuation_chars = ["'", '"', ",", ".", "!", ":", ";", '#', '@']
# list of positive words to use
positive_words = []
with open("positive_words.txt") as pos_f:
for lin in pos_f:
if lin[0] != ';' and lin[0] != '\n':
positive_words.append(lin.strip())

Answers

Answered by piyushkumar120820
0

Answer:

Is this a coding or formulae

Similar questions