Python之练习数学运用代码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python之练习数学运用代码相关的知识,希望对你有一定的参考价值。
1、对数函数
import math import matplotlib.pyplot as plt import numpy as np if __name__ == ‘__main__‘: x = np.arange(0.05,3,0.05) y1 = [math.log(a,1.5) for a in x] plt.plot(x,y1,linewidth=2,color=‘#007500‘,label=‘log1.5(x)‘) plt.plot([1,1],[y1[0],y1[-1]],"r--",linewidth=2) y2 = [math.log(a,2) for a in x] plt.plot(x,y2,linewidth=2,color=‘#9F35FF‘,label=‘log2(x)‘) y3 = [math.log(a,3) for a in x] plt.plot(x,y3,linewidth=2,color=‘#F75000‘,label=‘log3(x)‘) plt.legend(loc=‘lower right‘) plt.grid(True) plt.show()
以上是关于Python之练习数学运用代码的主要内容,如果未能解决你的问题,请参考以下文章
Python练习册 第 0013 题: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-),(http://tieba.baidu.com/p/2166231880)(代码片段