Python - 获取微信好友性别比例( Pie )

版权声明:转载请注明出处 https://blog.csdn.net/qq_42292831/article/details/88931008


Counter:计数返回键值的形式

items:将键值对转换为元组


import itchat
from collections import Counter
from matplotlib import pyplot as plt
plt.rcParams["font.family"]=["sans-serif"]
plt.rcParams["font.sans-serif"]=["SimHei"]

itchat.auto_login(hotReload=True)
friends = itchat.get_friends(update=True)

def analyseSex(frinends):
    sexs = list(map(lambda x:x["Sex"],friends[1:]))
    counts = list(map(lambda x:x[1],Counter(sexs).items()))
    labels = ["Male","Unknown","Female"]
    explode = [0,0,0.1]
    colors = ["red","yellowgreen","lightskyblue"]
    plt.pie(
        counts,
        explode,
        labels,
        colors,
        radius=0.9,
        autopct="%.2f%%",
        shadow = False
    )
    plt.legend(loc="upper right")
    plt.title("%s的微信好友比例" % friends[0]["NickName"])
    plt.axis("equal")
    plt.savefig("f:Geclipse的微信好友性别比例.png",dpi=500)
    plt.show()
if __name__=="__main__":
    analyseSex(friends)

猜你喜欢

转载自blog.csdn.net/qq_42292831/article/details/88931008
pie