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")

最佳答案

我猜您正在使用PRAW,并希望获得reddit用户名?现在,您正在尝试将字符串与Redditor对象连接在一起。

相反,您需要使用Redditor.name访问用户名。看看Redditor对象的文档。

在你的情况下

comment.submission.author.name

09-25 19:53