美文网首页
安装&初识python

安装&初识python

作者: harukou_ou | 来源:发表于2018-09-03 16:04 被阅读4次

    1. Anaconda and VS Code

    2.python例子

    1.

    a,b = 100,200
    print(f'{a}+{b}={a+b}')
    

    运行结果:

     100+200=300
    

    2.

    import matplotlib.pyplot as plt
    import math
    import numpy as np 
    
    a = list(np.arange(0 , 10 , 0.1))
    b = list(map(math.sin, a))
    
    plt.plot(a,b, label = 'y = sin(x)')
    plt.legend()
    plt.show()
    

    运行结果:


    正弦波

    相关文章

      网友评论

          本文标题:安装&初识python

          本文链接:https://www.haomeiwen.com/subject/fiabwftx.html