3.字符串str 在Python3中字符串是unicode序列,类似于存储字符的列表;元素是可哈希的常量,字符串本身是一种不可变的,可哈希的线性数据结构 【1】字符串定义 用引号'A'|"
3.字符串str
在Python3中字符串是unicode序列,类似于存储字符的列表;元素是可哈希的常量,字符串本身是一种不可变的,可哈希的线性数据结构
【1】字符串定义
用引号'A'|"B"|'''C''',或者str函数
【2】连接 join
【3】分割 splite rsplite splitlines partition rpatition
split 从左到右分割开 str --> list
rsplit 从右往左分割 str --> list
splitlines 以换行符为分割符,分割全部 str --> list
partition 保留分隔符,从左往右分割全部 str --> tuple
rpartition 保留分隔符,从右往左分割 str --> tuple
【4】修改 capitalize title upper lower swapcase | center ljust rjust zfill | strip lstrip rstrip
自然语言的修改 ,大小写capitalize title upper lower swapcase
程序语言的修改
填充 center ljust rjust zfill