1. 程式人生 > >python字串普通操作

python字串普通操作

字串拼接

  • 用加號連線
>>> 'zaime'+'hehe'
'zaimehehe'
>>> 
  • 直接放在一起,注意中間的空格數可以是0到無窮,但是必須是在同一行
>>> 'zaime'   'hehe'
'zaimehehe'
>>> 
  • 格式字串連線
>>> 'zaime%s'%'hehe'
'zaimehehe'
>>> 

字串切片

  • 獲取單個字串
>>> 'hehe'[0]
'h'
>>> 
  • 獲取一個子串
#'str'[start:end:step]
#範圍是左開右閉 [start,end)
#預設情況[0:len(str):1]
#step的正/負代表向右/左
>>> 'wo shi tr'[7:9]
'tr'
>>> 'wo shi tr'[3:6:2]
'si'
>>> 
>>> 'woshi'[1:4:-1]
''
>>> 'woshi'[2:1:-1]
's'
>>> 'woshi'[2:1]
''
#特別的[::-1]代表反轉字串
>>> 'woshi'[::-1]
'ihsow'
>>> 'woshi'[0::-1]
'w'
>>> 'woshi'[0:len('woshi'):-1]
''
>>> 'woshi'[:len('woshi'):-1]
''