gpt4 book ai didi

python - 这个 .py 可以有多个短语吗?

转载 作者:太空宇宙 更新时间:2023-11-03 15:55:45 24 4
gpt4 key购买 nike

Bot.py(我正在使用的)

#!/usr/bin/env python

from TwitterFollowBot import TwitterBot
my_bot = TwitterBot("/Home/TwitterFollowBot/config.txt")
my_bot.sync_follows()
my_bot.auto_rt("@ShoutGamers", count=2200)

所以基本上我正在使用这个TwitterFollowBot机器人自动转发任何包含“@ShoutGamers”的推文。

默认.py

from TwitterFollowBot import TwitterBot
my_bot = TwitterBot()
my_bot.auto_fav("phrase", count=1000)

我想知道如何添加多个短语?我需要将这两个短语添加到 @ShoutGamers 和 @RtwtKing 中。

最佳答案

就像添加 2 个字符串一样简单。

如果您想在一条推文中自动转发同时包含 @ShoutGamers@RtwtKing 的推文,您可以:

my_bot.auto_rt("@ShoutGamers @RtwtKing", count=2200)

如果您想自动转发 @ShoutGamers@RtwtKing 不在一起的推文,您可以使用 bot.auto_rt() 两次:

my_bot.auto_rt("@ShoutGamers", count=2200)
my_bot.auto_rt("@RtwtKing", count=2200)

关于python - 这个 .py 可以有多个短语吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40820743/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com