numpy是Python语言的一个扩展程序库,支持大量的维度数组与矩阵运算,此外,也针对数组运算提供大量的数学函数库。 numpy常用的操作: ndarray.ndim:秩,即轴的数量或维度的数量 ndarray.size:数组元素的总个数 ndarray.dtype:ndarray对象的元素类型 ...
分类:
其他好文 时间:
2020-07-26 00:36:17
阅读次数:
62
##1、创建数据库 create database xxx; 创建后台数据库 ##2、创建用户、授权 grant all on 数据库.* to 用户@'%'identified by 'password'; GRANT SELECT, INSERT, UPDATE, REFERENCES, DEL ...
分类:
数据库 时间:
2020-07-22 01:49:24
阅读次数:
102
1 def is_sorted1(a): 2 return (True if len([i for i in range(len(a)-1) if a[i]<=a[i+1]])==len(a)-1 else False)\ 3 or (True if len([i for i in range(le ...
分类:
编程语言 时间:
2020-07-19 23:19:23
阅读次数:
70
前期准备 下载并安装Git linux sudo apt-get install git win 下载应用程序,安装即可 设置用户名和email地址 git config --global user.name "Your Name" git config --global user.email "e ...
分类:
其他好文 时间:
2020-07-19 23:15:54
阅读次数:
69
grep 常用操作 grep -v ';' /etc/php-fpm.conf|grep -v '^$' 忽略注释和空行 ps aux | grep php-fpm |awk '{print $2}'|xargs kill -9 批量杀死进程 ...
分类:
系统相关 时间:
2020-07-18 22:43:59
阅读次数:
90
常用mysql安装命令: 1.解压创建完配置文件BIN目录下初始化:(记录初始化密码) mysqld --initialize --console2.注册mysql服务 mysqld --install mysql3.启动mysql服务 net start mysql4.登陆数据库 mysql -u ...
分类:
数据库 时间:
2020-07-18 16:06:38
阅读次数:
84
mongodb 基础知识use user //进入user数据库db.auth("username","password") //设置账号密码后可以用来鉴权, 先use进入数据库,再运行否则报错db.dropDatabase() //删除当前所在的数据库db.user.drop() //删除当前数据 ...
分类:
其他好文 时间:
2020-07-18 00:46:10
阅读次数:
102
一、配置网卡Ip (1)SUSE图形化界配置 (2)网卡文件配置 目录和centos稍微有点区别:/etc/sysconfig/network 配置网关: 注意SUSE不支持在ifcfg-ethX文件里面配置GATEWAY,需要在这个目录下(/etc/sysconfig/network/)创建一个r ...
分类:
其他好文 时间:
2020-07-16 18:12:17
阅读次数:
232
记录了本人在科研中常用到的git操作,方便查询,内容并不全面,更多功能等用到的时候再加 基础操作: 初始化仓库 git init 克隆仓库 git clone <URL> 添加、提交全部修改 git add . git commit -m "message" 分支操作 显示当前branch git ...
分类:
其他好文 时间:
2020-07-15 16:05:47
阅读次数:
85
设置ssh-key ssh-keygen -t rsa -C "18217426147@163.com" git clone git clone git@e.coding.net:weimeigu/auction.backend/auction.backend.git 创建并且切换分支 git ch ...
分类:
其他好文 时间:
2020-07-15 16:00:45
阅读次数:
67