sklearn-doc-zh
面向对象编程id(1) # 1 是一个数据对象type(1)dir(1)[:5] # c查看属性和方法id("a")type("a")dir("a&q....
2025-02-21 23:46:25 PUBLISHED
create和attitude# create和属性s = pd.Series([1,2,3,3,np.nan,4,4,1])print(s)dates = pd.date_range('202001....
2024-12-24 10:13:45 PUBLISHED
ctypessample c codeint max(int a){ return a*3;}Compilegcc -shared max.c -o max.sopython codefrom ....
2021-07-27 10:23:21 PUBLISHED
import shutil shutil.copyfile("hello.py", "hello2.py") #hello.txt内容复制给hello2.....
2021-06-01 17:05:14 PUBLISHED
numpy 的基本属性array = np.array([[1,2,3], [4,5,6]])print(array)print("number of dim....
2020-12-11 13:02:13 PUBLISHED
anaconda show anaconda/tensorflow激活虚拟环境: source activate <name>conda create -n myenv python=3.....
2022-08-03 14:05:59 PUBLISHED
jupyterjupyter notebook --ip=0.0.0.0 --port=8888安装cpp环境<https://blog.csdn.net/weixin_37543731/art....
2022-10-09 15:13:01 PUBLISHED
模块查看模块搜寻路径import syssys,path永久删除模块搜寻路径(base) root@iZ6web556915gn1k0c804iZ:~/anaconda3/lib/python3.8/....
2023-08-08 09:52:49 PUBLISHED
sklearn数据库....
2020-07-14 11:35:10 PUBLISHED
virtualenv --no-site-packages venvsource venv/bin/activatedeactivate....
2020-07-14 11:34:18 PUBLISHED
以任意空格分割单词为数组"submit suggest believe ".split()# ['submit', 'suggest', 'believe']正则表达式....
2020-05-25 22:15:14 PUBLISHED