wxpy微信应用
Posted yan1314
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wxpy微信应用相关的知识,希望对你有一定的参考价值。
import wxpy bot = wxpy.Bot(console_qr=-1, cache_path=True) my_friends = bot.friends() male = 0 female = 0 other = 0 for friend in my_friends: if friend.sex == 1: male += 1 elif friend.sex == 2: female += 1 else: other += 1 print("male = ", male) print("female = ", female) print("total numbers = ", len(my_friends))
以上是关于wxpy微信应用的主要内容,如果未能解决你的问题,请参考以下文章