用的是3.6.1
以py结尾的文件
变量不需要声明
num = 23不需要;结尾
strs = “i am a string”
float = 2.3
bool = true
字符串的连接
+号
类型转换
str(2) 转字符串
int(“20140701”) 转int
其它类型类似
去空格方法
rstrip() right
lstrip() left
strip() both
注释
#
以py结尾的文件
num = 23不需要;结尾
strs = “i am a string”
float = 2.3
bool = true
+号
str(2) 转字符串
int(“20140701”) 转int
其它类型类似
rstrip() right
lstrip() left
strip() both
#