首页 > 解决方案 > TypeError:无法连接“str”和“Redditor”对象

问题描述

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

标签: pythonpython-3.xpraw

解决方案


我猜你正在使用 PRAW 并想获得 reddit 用户名?现在,您正在尝试将 String 与 Redditor 对象连接起来。

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

在你的情况下,那将是

comment.submission.author.name

推荐阅读