Traceback (most recent call last):
File "run.py", line 56, in <module>
run(r, comments_replied_to)
File "run.py", line 30, in run_bot
b.write("Author=" + comment.submission.author + "\n")
TypeError: cannot concatenate 'str' and 'Redditor' objects
这是从代码中获得的追溯,我不确定如何解决此问题,谢谢。
这是代码
with open ("first.txt", "a") as f, open
("second.txt", "a") as b:
f.write(comment.id + "\n")
b.write("author=" + comment.submission.author + "\n")
答案 0 :(得分:2)
我猜您正在使用PRAW,并希望获得reddit用户名?现在,您正在尝试将字符串与Redditor对象连接起来。
相反,您需要使用Redditor.name
来访问用户名。看看Redditor
对象的文档。
在您的情况下
comment.submission.author.name