Python入門3 之使用字串

2021-08-05 21:14:09 字數 1693 閱讀 7034

1, 字串的格式化:

>>

>

format

="hello %s"

#對應有%d,%f

>>

> value =

('king'

)>>

>

print

format

% value

>>

>

"hello king"

>>

>

print

format

%'king'

>>

>

'hello king'

>>

> v =

'%s is %s'

>>

>

print v %

'king'

,'me'

#報錯,不是元組,後面的元素多於乙個就要寫成元組的形式

>>

>

print v %

('king'

,'me'

)>>

>

'king is me'

2,字串方法:

#find方法:可以在字串中找到字串,並返回最左端的索引,如果不存在返回-1

>>

> t =

'hello python'

>>

> t.find(

'lo')3

#join()連線字串中的元素

)#對應的還有upper()函式,全部大寫

#replace(args1,args2)函式,傳入的引數1為被替換的字串,引數2替換成的字串,返回被替換之後的全部字串

>>

>

str=

'cctv is in china'

>>

>

str.replace(

'china'

,'beijing'

)'ccut is in beijing'

# split()將字串分割成序列,引數為以引數分割,是join()的可逆函式,如果沒有引數,即以空格分割

>>

>

'1+2+3+4'

.split(

'+')[1

,2,3

,4]# strip()方法返回不包括空格的字串,也可以指定要刪除的字元,將它們作為引數即可

>>

>

' find'

.strip(

)'find'

這章到此結束,請繼續瀏覽下章python入門4_之字典的使用

下一章

python 基礎3 使用字串

format hello s how are s s的部分成為轉化說明符,標記了需要插入的位置,s表示值會被格式化為字串 value world you print format value 使用元組 hello world how are you format i am 2f kg 格式化為兩位數...

python筆記三 使用字串

1 所有序列操作 索引 分片 乘法 判斷成員資格 求長度 取最小值和最大值 對字串同樣適用,但是字串是不可變的,不能對字串的內容進行修改。2 對於賦值的字串引數陣列,一般使用元組來儲存,例如下面的values formats hello,s.s enoughfor ya values world h...

python學習2 使用字串

字串 所有標準的額序列操作 索引,分片,乘法,判斷成員資格,求長度,最大最小值 對字串都適用,但,字串是不可變的 a my name is hahaahh a 3 sdsd traceback most recent call last file line 1,in a 3 sdsd typeerr...