乐观煎蛋

文章
5
资源
0
加入时间
2年10月21天

Python关于random常用函数用法简介random.random()random.randint(10,20)random.seed()random.randn(x0,x1,x2…xn)与random.rand(x0,x1,x2…xn)np.random.normal(loc=0.0, scale=1.0, size=None)

关于random常用函数用法简介random.random() 随机生成(0,1)之间的**浮点数** random.random()import numpy as np#np.random.random()print("结果:",np.random.random())结果: 0.1378131111598846random.randint(10,20) 随机生成100-200的**整数**#np.random.randint(10,20)print("结果:&q

Python:Pandas:DataFrame基础(1)

引子 在用python解决实际问题时,从磁盘文件读取数据是经常要做的工作。这篇文章主要说一下python读取excel文件中的数据。利用python读取excel中的数据是一件很容易的事情,读取的方式有很多,这里主要讲通过pandas中的read_excel()方法来读取的方式,在我看来这种方式已经足够简单了,以至于我不想再了解其他的方式。要想使用这种方式,首先需要在代码中引入两个包:`im

webpack打包自己开发的npm包的相关配置

1、自定义开发npm包:(1)包名是library-sun(2)包版本为:1.0.02、包上传到npm平台的方法3、webpack对library包的基础配置:const path = require('path');module.exports = { mode: 'production', entry: './src/index.js', externals: 'lodash', // library包中有引入lodash,打包时不将lodash打进去,用户在引入该library时

python输入半径计算公式_Python:09设计Circle类包括圆心半径、颜色属性,编写类方法计算周长与面积(2种方法)...

设计一个Circle类,包括圆心位置、半径、颜色属性。编写构造方法进行属性初始化,编写类方法计算周长与面积。方法一class Circle:location=(0,0)r=0color=""def __init__(self):self.location=(100,100)self.r=10self.color="white"def GetGirth(self):PI=3.14print("圆的周...