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……
linux
1186
3 分钟
全新仓库 echo "# roscpp" >> README.md git init git add . git commit -m "first commit" git remote add origin https://github.com/xuehu96/xxxx.git git push -u origin master 已有仓库 git remote add origin git@gitee.com:xuehu96/tcp_hello_client.c.git git push -u origin……