2018年5月21日
摘要: #strip 去除指定字符#name='*egon**'#print(name.strip('*'))#去除两端的*#print(name.lstrip('*'))#去除左端的*#print(name.rstrip('*'))#去除右端的*#lower,upper#print('ABC'.lower 阅读全文
posted @ 2018-05-21 17:56 邢帅杰 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 安装环境:http://www.runoob.com/python/python-install.html#变量打印#name='jay'#sex='男'#age=20#level=10#print('名字:'+name+' 性别:'+sex+" 年龄:"+str(age)+" 级别:"+str(l 阅读全文
posted @ 2018-05-21 16:11 邢帅杰 阅读(152) 评论(0) 推荐(0) 编辑
摘要: int(x [,base ]) 将x转换为一个整数 long(x [,base ]) 将x转换为一个长整数 float(x ) 将x转换到一个浮点数 complex(real [,imag ]) 创建一个复数 str(x ) 将对象 x 转换为字符串 repr(x ) 将对象 x 转换为表达式字符串 阅读全文
posted @ 2018-05-21 14:21 邢帅杰 阅读(190) 评论(0) 推荐(0) 编辑