240 发简信
IP属地:湖南
  • Resize,w 360,h 240
    菜鸟JSON—06

    json.dump(all_eq_data,f,indent=4)#indent=4让dump()使用与数据结构匹配的缩进量来设置数据的格式 d...

  • Resize,w 360,h 240
    菜鸟下载数据CSV模块,datetime模块—05

    CSV模块介绍: csv.reader(): with open(filename) as f: reader = csv.reader(f) ...

  • 菜鸟Plotly(模拟投掷筛子)—04

    先安装包Plotly die.py from random import randintclass Die: #表示一个骰子的类 def __i...

  • 菜鸟MATPLOTLIB(随机漫步)—03

    from random import choicex_direction = choice([1,-1])#从-1和1中随即选择一个数赋值给变量...

  • Resize,w 360,h 240
    菜鸟MATPLOTLIB(scatter)—02

    内置样式: 在控制台输入如下代码>>>import matplotlib.pyplot as plt>>> plt.style.availabl...

  • Resize,w 360,h 240
    菜鸟MATPLOTLIB(subplots-plot)—01

    import matplotlib.pyplot as plt squares = [1,4,9,16,25,36] fig,ax = plt....