python数据类型-字符串
数据类型-字符串: 特性:有序和不可变 字符串可以加和乘 拼接 创建: 对于字符串,一下表示: s.capitalize()开头大写其余小写 'Helloworld!' s.casefold()全部小写 'helloworld!' s.center(50,'*')50是长度,*是填的东西 '*******************HelloWorld!*******************' s.count('o')统计‘o’有几个,统计字符串中字符的个数 2 s.count('o',0,5)统计从索引0开始到第5个‘o’的个数 1 s.endswith('!')判断是不是以‘!’结尾 True s.endswith('o') False s1='a\tb' \t tab键 print(s1) a b s1.expandtabs()扩展tab键 'a b' s1.expandtabs(1)1是size a到b的长度 'ab' s1.expandtabs(60)60如上 'a b' s.find('o')查找字符串返回它的索引值 4 s.find('os')查不到字符串返回 -1 -1 s.find('o',0,3)也可以起始查找,找不到返回-1 -1 s.find('o',0,5)找到返回索引值 4 s.rfind('o') 7 s3='my name is {0},i am {1}