Python
thunten
这个作者很懒,什么都没留下…
展开
-
Python:文件操作技巧(File operation)
读写文件 spath = "D:/download/baa.txt" f = open(spath,"w " ) # Opens file for writing.Creates this file doesn't exist. f.write( "First line 1.\n") f.writelines( " First line 2. " ) f转载 2012-03-05 13:37:40 · 256 阅读 · 0 评论 -
Python 字符串操作(string替换、删除、截取、复制、连接、比较、查找、包含、大小写转换、分割等)
s.strip() .lstrip() .rstrip(',') 去空格及特殊符号 复制字符串 Python #strcpy(sStr1,sStr2) sStr1 = 'strcpy' sStr2 = sStr1 sStr1 = 'strcpy2' print sStr2 连接字符串 Python #strcat(sStr1,sStr2)转载 2012-04-18 11:54:54 · 295 阅读 · 0 评论 -
Python字典的应用详解
字典 一.创建字典 方法①: >>> dict1 = {} >>> dict2 = {'name': 'earth', 'port': 80} >>> dict1, dict2 ({}, {'port': 80, 'name': 'earth'}) 方法②:从Python 2.2 版本起 >>> fdict = dict((['x', 1], ['y',转载 2012-04-18 13:11:51 · 284 阅读 · 0 评论