摘要:
线性结构: 一、 1、线性结构:可以迭代,for ... in;len()可以获取长度;通过下标可以访问;可以切片 2、切片: 1)、通过索引访问线性结构的一段数据; sequence[start:stop]表示返回[start,stop],start默认为0,stop默认为末尾,支持负索引; 超过 阅读全文
摘要:
bytes bytes是Python 3中特有的,Python 2 里不区分bytes和str。 Python 2中 >>> type(b'xxxxx') <type 'str'> >>> type('xxxxx') <type 'str'> Python 3中 >>> type(b'xxxxx') 阅读全文
摘要:
字符串排版*: title():标题的每个单词都大写 capitalize():首个单词大写 center(width[,fillchar]):width打印宽度 fillchar填充的字符 zfil(width):width打印宽度,居右,左边用0填充 ljust(width[,fillchar] 阅读全文