我正在创建一个项目,我将在其中接收推文列表(Twitter),然后检查 a 中是否有单词dictionary
,其中包含具有特定值的单词。我已经得到了我的代码来接受这些词,但我不知道如何消除这些符号,比如, . "
::
这是代码:
def getTweet(tweet, dictionary):
score = 0
seperate = tweet.split(' ')
print seperate
print "------"
if(len(tweet) > 0):
for item in seperate:
if item in dictionary:
print item
score = score + int(dictionary[item])
print "here's the score: " + str(score)
return score
else:
print "you haven't tweeted a tweet"
return 0
这是将要检查的参数/推文:
getTweet("you are the best loyal friendly happy cool nice", scoresDict)
有任何想法吗?