str.title():将每个单词的首字母改为大写,“hello word”→“Hello Word”
str.upper():将字符串都改为大写,“hello word”→“HELLO WORD”
str.lower():将字符串都改成小写,“HELLO WORD”→“hello word”
str1+str2:拼接两个字符串,“chen”+“junhua”→“chen juanhua”
“\t”:制表符
“\n”:换行符
str.rstrip():去除字符串末尾的空白 “python ”→“python”
str.lstrip():去除字符串开头的空白 “ python”→“python”
str.strip():去除字符串两端空白 “ python ”→“python”
字符串切片:
str.split(str="", num=string.count(str)):“python hello word”.split(" ", 1)→[“python”, “hello word”]
str:分隔符,默认为所有的空字符,包括空格、换行(\n)、制表符(\t)等
num:切割次数
str():转化为字符串类型 22.str()→“22”
网友评论