Python基礎 字串

2021-10-03 20:00:07 字數 560 閱讀 9330

1、字串定義

序列物件

2、字串操作

(1)取值

字串名[索引]

切片(2)字串操作的方法:

字串名.strip()

去字串左右的空格,但原字串本身沒有變

字串名.strip()

字串名.lstrip()

字串名.rstrip()

(3)查詢

字串名.find(資料值)

有返回第一次的位置,無返回-1

(4)拆分

字串名.split()

預設以空格

(5)連線

字串名.join()

+(6)替換

字串名.replace(old, new)

(7)字串名.lower()

字串名.super()

字串名.count()

(8)字串操作的內建函式:

len() max() min()

3、字串應用場景

python基礎 字串

轉義符 n換行 print 我是 nzzz 我是 zzz t製表符 print 我是 tzzz 我是 zzz 雙引號 print 我是 zzz 我是 zzz 單引號 print 我是 zzz 我是 zzz 續航符 name s z print name sz原始字串 原始字串 r abc r abc...

Python基礎字串

str1 hello python str1 str1.capitalize 把開頭轉換成大寫 print str1 str1 str1.center 8,居中並填充 print str1 str1 str1.find j 0,len str1 尋找元素所在的位置,沒在返回 1 print str1...

Python基礎 字串

判斷全部否是字母 str helloween if str.isalpha print 字母 判斷全部否是數字 str 1234 if str.isdecimal print 數字 判斷都是大寫 str abc if str.isupper print 大寫 判斷都是小寫 str abc if st...