len('pbr') # out: 3
len(repr('pbr')) # out:5
x='iam'
y='pan'
print(x,y) # 法一,注意print 預設連續輸出兩個字串,其中間用空格隔開
x+y # 法二
out:
iam pan # 兩個字串之間有空格
iampan
a='i am\
allen' # 這裡開頭有4個空格
out
i am allen
在輸出結果中,am 和 anllen中間的4個空格也被輸出
b='''i am\n
joe,
hello'''
print(b) # 在notebook中會有兩種顯示
b
out
i am
joe,
hello
另一種結果:i am\n\njoe,\n hello
name="jack lucy"
name[len(name)-1] # 取末尾字元
name[1:6] #out :'ack l'
'abce' not in 'abcd' # out:true
'abc' in 'abcd' # out:true
a=' 123\n\t\r'
a.strip()
out:123
b='123abc123abc311'
b.strip('12')
out:3abc123abc3
注意:要刪除的字符集沒有順序,且沒有個數
str.replace(old, new, count=-1)
引數解析:
str1='this is string example...wow!!!this is really string"
print(str1.replace('is','was'))
print(str1.replace('is','was',3))
# print(str1.replace('is','was',count=3)) 報錯
python基礎知識 字串
1 字串的格式化 python 將若干值插入到帶有 標記的字串中,實現動態地輸出字串。格式 s str s s str 1,str 2 例如 str 0 i str 1 love str 2 china format s s s str 0,str 1,str 2 print format ilov...
Python基礎知識 字串(一)
字串是python中非常基礎,非常常用的一種資料型別。從這節開始介紹python的字串的使用方法。ss hello,world 定義乙個字串 ss 1 使用索引,獲取某個字元,結果為 e ss 0 2 使用切片,獲取乙個子字串。結果為 he ss 3 可以使用負數索引,並且可以使用預設索引,預設時表...
Python基礎知識 字串(三)
本節主要介紹字串的常用的函式。在寫程式的過程中,對字串的操作是一種非常常見的操作,所以本節的各種字串函式,使用到的頻率都很高。center方法用來把呼叫字串放到中間,並且把兩端用某個字元補齊。預設使用空格補齊。呼叫形式 center 新字串長度,補齊用的字元 例如 aa beijing aa.cen...