在Python中,什么是序列?
序列就是一组按照顺序排列的值(数据集合)。
三种内置的序列类型:字符串,列表,元组
序列的特征:
支持索引、切片的操作(集合不支持),方便操作。
特征:第一个正索引为0,索引指向的是左端。
第一个索引为负数的时候,指向的是右端。
字符串:a = 'python' [0][1][2][3][4][5],索引序列从‘0’开始。
切片,截取一段内容。【begin:end:step】
字符串的15个常用函数:
capitalize(),endswith/starswith(),find(),isalnum(),isalpha(),isdigit(),islower(),join(),lower/upper(),swapcase(),l/rstrip(),
split(),title(),replace(),count().