⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 color_demo.py

📁 非原创。很好的python例子
💻 PY
字号:
#!/usr/bin/env python"""matplotlib gives you 3 ways to specify colors,    1) as a single letter string, ala matab    2) as an html style hex string or html color name    3) as an R,G,B tuple, where R,G,B, range from 0-1See help(colors) for more info."""from pylab import *subplot(111, axisbg='darkslategray')#subplot(111, axisbg='#ababab')t = arange(0.0, 2.0, 0.01)s = sin(2*pi*t)plot(t, s, 'y')xlabel('time (s)', color='r')ylabel('voltage (mV)', color='k')title('About as silly as it gets, folks', color='#afeeee')show()

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -