1.strip()函数 :删除开头结尾处字符
3.atoi atof
atoi函数
原型:int atoi( const char *string );
ASCII to integer
作用:将字符串转为integer类型
atof函数
原型:double atof( const char *string );
ASCII to float
作用:将字符串转为double类型
2.with open as 函数: 读取文件