https://blog.csdn.net/hahaha_yan/article/details/78905495 一.字符串的类型 ##表示字符串: 'i like the world' "i like the world" """i like the world""" \n 表示换行符 \t 表示tab符 \表示转移字符 (使用较多) ##字符串中操作预览 索引: • 索引(s[i] ):获取特定偏移的元素 •…
想使用操作类文件对象的程序来操作文本或二进制字符串 使用io.StringIO() 和io.BytesIO() 类来创建类文件对象操作字符串数据 >>> s = io.StringIO() >>> s.write('Hello World\n') 12 >>> print('This is a test', file=s) 15 >>> # Get all of the data written so far >>>…