0

我是 Python 新手。

我正在使用 PRAW 和 Python 创建一个新的机器人,它对显示其基本帐户信息(用户名、帐户创建日期、业力计数)的新帖子发表评论。

我试图让它显示海报帐户一直处于活动状态的年、月和日,但到目前为止它只显示年。有没有更好的方法可以让它显示这些信息,或者我可以用我已经设置的东西来创建它?到目前为止,我所拥有的是:

                author = post.author
                if author:
                    seconds_year = 60 * 60 * 24 * 365
                    now = datetime.datetime.now(datetime.timezone.utc).timestamp()
                    difference = now - author.created_utc
                    years = difference // seconds_year
                    author_created = datetime.datetime.utcfromtimestamp(author.created_utc)
                    author_created = datetime.datetime.strftime(author_created, "%d %B %Y")
                    print("Commenting user history")
                    comment = COMMENT_TEMPLATE % (author.name, author_created, years, author.link_karma, author.comment_karma)
                    post.add_comment(comment)
            sql.commit()
4

1 回答 1

0

您可以使用divmod()函数来查找年、月、日:

DAY = 24 * 60 * 60 # seconds
MONTH = 30 * DAY
YEAR = 365.2524 * DAY # Gregorian year

years, seconds = divmod(difference, YEAR)
months, seconds = divmod(seconds, MONTH)
days, seconds = divmod(seconds, DAY)
于 2015-02-17T09:13:30.177 回答