Python
文章平均质量分 83
hanshanyeyu
工作10多年的技术geek
展开
-
Python strip lstrip rstrip使用方法
Python中的strip用于去除字符串的首尾字符,同理,lstrip用于去除左边的字符,rstrip用于去除右边的字符。这三个函数都可传入一个参数,指定要去除的首尾字符。需要注意的是,传入的是一个字符数组,编译器去除两端所有相应的字符,直到没有匹配的字符,比如:theString = 'saaaay yes no yaaaass'print转载 2013-11-07 17:39:50 · 507 阅读 · 0 评论 -
python遍历文件夹和文件
在Python中,文件操作主要来自os模块,主要方法如下:os.listdir(dirname):列出dirname下的目录和文件os.getcwd():获得当前工作目录os.curdir:返回当前目录('.')os.chdir(dirname):改变工作目录到dirnameos.path.isdir(name):判断name是不是一个目录,name不是目录就返回false原创 2013-11-06 17:44:21 · 1287 阅读 · 0 评论 -
python中的字符数字之间的转换函数
int(x [,base ]) 将x转换为一个整数 long(x [,base ]) 将x转换为一个长整数 float(x ) 将x转换到一个浮点数 complex(real [,imag ]) 创建一个复数 str(x ) 将对象 x 转换为字符串 rep转载 2017-12-18 20:29:27 · 301 阅读 · 0 评论 -
Python中给List添加元素的4种方法分享
List 是 Python 中常用的数据类型,它一个有序集合,即其中的元素始终保持着初始时的定义的顺序(除非你对它们进行排序或其他修改操作)。在Python中,向List添加元素,方法有如下4种方法(append(),extend(),insert(), +加号)1. append() 追加单个元素到List的尾部,只接受一个参数,参数可以是任何数据类型,被追加的元素在List中保持着原结转载 2017-12-19 09:45:51 · 104837 阅读 · 0 评论 -
python读conf配置文件--ConfigParser
python读写配置文件还是比较方便得。 1) 基本的读取配置文件 -read(filename) 直接读取ini文件内容 -sections() 得到所有的section,并以列表的形式返回 -options(section) 得到该section的所有option -items(section) 得到该section的所有键值对原创 2017-12-16 16:31:48 · 4653 阅读 · 0 评论 -
Python int与string之间的转化
string-->int1、10进制string转化为int int('12')2、16进制string转化为int int('12', 16) int-->string1、int转化为10进制string str(18)2、int转化为16进制string hex(18)...转载 2018-12-08 07:50:56 · 16420 阅读 · 0 评论 -
python None null 区分
def test(): a ='' if a.strip()=='': print 'null' if not a.strip(): print 'null'if __name__ == '__main__': test()C:\Python27\python.exe E:/newWorkSpace/cart/common/...原创 2018-12-27 13:59:45 · 561 阅读 · 0 评论