我正在关注关注我的用户,但我还没有关注 Tweepy。我有逻辑,但我的问题是语法。
for follower in followers_list:
if follower not in friends_list:
to_follow.append(follower)
print to_follow
for follower in to_follow:
print follower
api.follow(follower)
有谁知道我应该用什么来关注人(代替 api.follow,它不起作用)