摘要: python print格式化输出。1. 打印字符串print ("His name is %s"%("Aviad"))效果:2.打印整数print ("He is %d years old"%(25))效果:3.打印浮点数print ("His height is %f m"%(1.83))效果:... 阅读全文
posted @ 2014-10-19 20:14 yyxayz 阅读(401) 评论(0) 推荐(0) 编辑
摘要: strip函数原型声明:s为字符串,rm为要删除的字符序列. 只能删除开头或是结尾的字符或是字符串。不能删除中间的字符或是字符串。s.strip(rm) 删除s字符串中开头、结尾处,位于rm删除序列的字符s.lstrip(rm) 删除s字符串中开头处,位于rm删除序列的字符s.rstrip(rm) ... 阅读全文
posted @ 2014-10-19 09:54 yyxayz 阅读(95172) 评论(0) 推荐(11) 编辑
摘要: operator.itemgetter函数operator模块提供的itemgetter函数用于获取对象的哪些维的数据,参数为一些序号(即需要获取的数据在对象中的序号),下面看例子。a = [1,2,3]>>> b=operator.itemgetter(1) //定义函数b,获取对象的第1个域... 阅读全文
posted @ 2014-10-19 08:18 yyxayz 阅读(291) 评论(0) 推荐(0) 编辑