❤️中秋来了,我用Python造了和RMB同色系的月饼
Posted pythonic生物人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了❤️中秋来了,我用Python造了和RMB同色系的月饼相关的知识,希望对你有一定的参考价值。
中秋将至,祝关注pythonic生物人的小伙伴们节日快乐,事事如意!
这里,用Python送小伙伴们一套RMB同色系月饼,祝进食愉快😄。
# 主函数,传入色号就可以~
def mon_plt(x):
import matplotlib.pyplot as plt
import pandas as pd
moncake_in = pd.read_csv('moncake.csv') #数据集参考biobabble
plt.rcParams['font.sans-serif'] = ['Songti SC']
for i in x:
plt.figure(dpi=120)
plt.scatter(
moncake_in['x'],
moncake_in['y'],
c='%s' % i,
)
plt.ylim(max(moncake_in['y']), min(moncake_in['y']))
plt.axis('off')
plt.text(x=210,
y=350,
s='$\\heartsuit$中秋快乐$\\heartsuit$\\n公众号:pythonic生物人',
ha='center',
fontdict=dict(
fontsize=9,
color='%s' % i,
family='Songti SC',
weight='heavy',
))
plt.show()
100元系列
mon_plt(['#be0f2d','#cf273c','#cb364a','#eb4035','#d55f6f','#f5abb7'])
50元系列
20元系列
10元系列
5元系列
1元系列
以上是关于❤️中秋来了,我用Python造了和RMB同色系的月饼的主要内容,如果未能解决你的问题,请参考以下文章
中秋节快到了,别学Python了,进来排队领块月饼吧纯手工哪种!
听说❤️Google翻译❤️挺不错的,于是我用❤️Python的selenium❤️把它爬下来了!!
听说❤️Google翻译❤️挺不错的,于是我用❤️Python的selenium❤️把它爬下来了!!