我正在編寫一個程序,它會遍歷包含藝術家名字的字符串列表,並將它與Reddit提交中的所有註釋進行比較。它發現一場比賽後停止或根本不起作用(即使是簡單的測試字符串),你能指出我的錯誤嗎?包括除認證之外的Reddit部分。循環遍歷子串的所有註釋
submission = reddit.submission(id='75lnoo') # Topic about Eminem, lots of mentions of him
submission.comments.replace_more(limit=0) # Stores all the comments
comments = submission.comments.list()
artists_list = ['Eminem', 'Drake'] # Sample list
for comment in comments:
for artist in artists_list:
if artist.lower() in comment.body.lower():
print(comment.permalink() + ' - ' + artist)
會只打印一件事的時候,應該有充足的比賽
/R /音樂/評論/ 75lnoo/eminem_rips_donald_trump_in_bet_hip_hop_awards/do894hp - 阿姆
請修復縮進。 –
縮進固定。 –