Python第二章公交系统数据读取与处理
2017-07-18 本文已影响0人
SYSinsight
- codecs解决文件编码不统一时的读写问题
示例(u字符使编码转换为unicode方式):
>>> a = open('test.txt','a')
>>> line1 = 'string'
>>> a.write(line1)
>>>
>>> line2 = u'unicode'
>>> a.write(line2)
>>> Traceback (most recent call last):
File "<stdin>", line 1, in <module>
UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-2: ordinal not in range(128)
解决方式
>>> a = codecs.open('test.txt','a','utf-8')
>>> line1 = u'unicode'
>>> a.write(line1)
>>>
-
read(),readline(),readlines()
1.read将整个文件读入一个字符串
2.readline逐行将文件读入字符串(多个)
3.readlines将文件一次性读完,逐行作为字符串,以‘,’隔开生成一个list
4.三者都可传入参数限定读取的字符数 -
strip()函数
s.strip(rm) 删除s字符串中开头/结尾处,位于 rm删除序列的字符
s.lstrip(rm) 删除s字符串中开头处,位于 rm删除序列的字符
s.rstrip(rm) 删除s字符串中结尾处,位于 rm删除序列的字符