我正在使用PRAW编写一些代码。我收到一个错误-NameError:未定义名称'top_funny'。 我该怎么办?
import praw
reddit=praw.Reddit(client_id='id',
client_secret='secret',password='password',
user_agent='agent',username='usrname')
subreddit=reddit.subreddit('funny')
top_funny=subreddit.top(limit=1)
for submission in top_funny:
print(submission)
答案 0 :(得分:0)
代码对我来说很好。看起来这可能是一个简单的错字。 如果未定义“'top_funny'”,请返回并确保已定义它。
这是我拼写top_funnyy后得到的回溯:
Traceback (most recent call last):
File "main.py", line 74, in <module>
for submission in top_funnyy:
NameError: name 'top_funnyy' is not defined