码迷,mamicode.com
首页 > 编程语言 > 详细

python——字符串

时间:2018-08-19 13:55:49      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:class   rip   star   取消   hello   大写   one   bsp   code   

长字符串

>>> str = ‘‘‘
          ---------userinfo----------
          name:lalalaxpf
          age:18
          sex:man
          iphone:123
          address:ooxx
          -----------end--------------
       ‘‘‘
>>> print(str)

          ---------userinfo----------
          name:lalalaxpf
          age:18
          sex:man
          iphone:123
          address:ooxx
          -----------end--------------

原始字符串

取消字符的特殊意义

>>> print(oo\nxx)
oo
xx
>>> print(roo\nxx)
oo\nxx

字符串拼接

1、通过+连接

>>> print(oo+xx)
ooxx

2、join()方法

>>> list = [a,b]
>>> ‘‘.join(list)
ab

字符串切片、截取

语法

str[start:end:step]

字符串常用方法

str.strip()

#去掉空格和换行符,中间的去不了
>>> str =     \noo  \nxx\n   
>>> str.strip()
oo  \nxx
#去掉指定字符串
>>> str = ooxx
>>> str.strip(xx)
oo

str.lstrip()、str.rstrip()

>>> str =    ooxx   
>>> str.lstrip()#去掉左边的空格和换行符
ooxx   
>>> str.rstrip()#去掉右边的空格和换行符
   ooxx

str.count()

#查找某个字符在字符串里面出现的次数
>>> str = ooxx
>>> str.count(o)
2

str.capitalize()

#首字母大写
>>> str = ooxx
>>> str.capitalize()
Ooxx

str.title()

#所有单词都是以大写开始,其余字母均为小写
>>> str = hello world
>>> str.title()
Hello World

 

python——字符串

标签:class   rip   star   取消   hello   大写   one   bsp   code   

原文地址:https://www.cnblogs.com/lalalaxpf/p/9500993.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!