7
1 分钟
编程经验分享 www.YhGao.com
linux
306
1 分钟
supervisor 安装 1 sudo apt-get install supervisor 配置 在/etc/supervisor/conf.d目录下创建 程序名.……
131
1 分钟
node安装vue 1 2 3 4 npm install -g cnpm --registry=https://registry.npm.taobao.org --registry=https://registry.npm.taobao.org cnpm install vue cnpm install -g @vue/cli yarn 安装vue 1 2 3 4 5 6 7 8 9 npm……
python
3795
8 分钟
== 和 is == 判断值是否相等 , is判断是否指向的是一个东西 深拷贝 浅拷贝 import copy c = copy.deepcopy(a) # 完成深拷……
python
5926
12 分钟
python2中文 1 2 #coding=utf-8 #-*- coding:utf8 -*- 类型 使用type返回实例所属的类型 1 2 3 4 5 6 >>>type(123) int >>>type(1.2) float……