- 博客(5)
- 收藏
- 关注
原创 ConfigParser
一、ConfigParser简介ConfigParser 是用来读取配置文件的包。配置文件的格式如下:中括号“[ ]”内包含的为section。section 下面为类似于key-value 的配置内容。1: [db]2: db_host = 127.0.0.13: db_port = 224: db_user = root5: db_pass = rootroot6:
2013-05-03 16:13:51 255
原创 strip lstrip rstrip使用方法(字符串处理空格)
strip是trim掉字符串两边的空格。lstrip, trim掉左边的空格rstrip, trim掉右边的空格strip (s [ , chars ] )Return a copy of the string with leading and trailing characters removed. If chars is omitted or
2013-05-02 16:44:34 364
原创 range()
>>> range(1,10)[1, 2, 3, 4, 5, 6, 7, 8, 9]>>> range(1,10,2)[1, 3, 5, 7, 9]>>> range(10,1,-1)[10, 9, 8, 7, 6, 5, 4, 3, 2]>>> range(1,10,-1)[]>>> range(10,1,-3)[10, 7, 4]>>>
2013-05-02 15:14:19 257
原创 python sorted
我们需要对List进行排序,Python提供了两个方法对给定的List L进行排序,方法1.用List的成员函数sort进行排序方法2.用built-in函数sorted进行排序(从2.4开始)--------------------------------sorted--------------------------------------->>> help(sorte
2013-05-02 15:04:26 209
原创 python 字典的 setdefault用法
拿字典来说:>>> a={}>>> a['key']='123'>>> print (a){'key': '123'}>>> print (a.setdefault('key','456')) #显示a这个字典的'key'值的内容,因为字典有,所以不会去设置它123>>> print (a.setdefault('key1','456')) #显示a这个字典的'key1'值的内
2013-05-02 15:02:56 311
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人