Python3 字串小練習

2021-08-15 05:01:40 字數 991 閱讀 8088

# coding:utf-8

string='

'#

定義兩個變數:分別表示開始的字串、結束的字串

先找第乙個開始位置

,如果沒有找到 返回的是

-1start=string.find(start_string)

# 只要

start

不等於-1.

說明找到了

找結束的位置

end=string.find(end_string, start)

# 擷取字串 結束位置

= 結束字串的開始位置

+結束字串的長度

sub_str=string[start:end+len

(end_string)

]print

(sub_str)

# 找下乙個開始的位置

# 如果沒有找到下乙個開始的位置,相當於寫了一句

start=-1,while

迴圈的條件不成立,結束迴圈

start=string.find(start_string, end)

python3字串相等 python3 字串

1 拼接 1 多個字串進行連線 連線符,必須左右資料型別一致 例 print hello world 結果 helloworld 例 print 5 world 結果 typeerror unsupported operand type s for int and str 2 多個相同字串連線 字串...

python3 字串基礎

字串可以使用一對單引號或一對雙引號指定起止位置,兩種方式指定的字串完全等價。如 hello 和 world 可以用三引號 或 指定多行字串,其中可自由使用單 雙引號而不需轉義。如 what s your name?i asked.字串過長不方便寫在一行時,可以使用反斜槓跨行而不增加換行符。如 abc...

python3 字串操作

auther aaron fan name my tname is age is print name.capitalize 這段話的首字母大寫 print name.count a 統計這段字串中一共有多少個a print name.casefold print name.center 50,一共...