Python文本处理(2)
访问子字符串(获取记录中某些字段的数据)
解决方法:
切片,但只能取得一个字段
# -*- coding:gb2312 -*-old_style='this is %(thing)s'#标识符被放在括号中,需要使用%操作符,右边放上字典print old_style % {'thing':5}print old_style % {'thing':'test'}