画图1

import math
import matplotlib.pyplot as plt

if __name__ == '__main__':
    x=[float(i)/100.0 for i in range(1,300)]
    y=[math.log(i) for i in x]
    plt.plot(x,y,'r-',lineWidth=3,label='log curve')
    a=[x[20],x[175]]
    b=[y[20],y[175]]
    plt.plot(a,b,'g-')
    plt.plot(a,b,'b*',markersize=15,alpha=0.75)
    plt.xlabel('x')
    plt.ylabel('log(x)')
    plt.legend(loc='upper left')
    plt.grid(True)
    plt.show()

画图1_第1张图片

你可能感兴趣的:(画图)