1.當沒有傳入引數時,預設除去首尾空格
>>> str = ' hello,world! '
>>> str.strip()
'hello,world!'
>>>
2.當傳入乙個字串為引數時,編譯器去除兩端相應的字元(字串引數中的每個字元)
str = 'saaaay yes yaaass'
>>> str
'saaaay yes yaaass'
>>> str.strip('say')
' yes '
str依次被去除首尾在['s','a','y']列表中的字元,直到字元不在列表中
當給引數加個空格時'say'---->'say ',str依次被去除首尾在['s','a','y',' ']列表中的字元
>>> str.strip('say ')
'e'
sort()是列表的方法屬性,而sorted()是內建函式
《Python核心程式設計》數字型別
python中的浮點型相似c中的double型,是雙精度浮點型。占用64位。python中的複數型別規定 acomplex 1.0 2.0j acomplex.real 1.0 acomplex.imag 2.0 acomplex.conjugate 1 2j 自己主動型別轉換 當對兩個不同型別的數...
Python核心程式設計 映像和集合型別
對映型別物件裡雜湊值 鍵,key 和指向的物件 值,value 是一對多的關係。dict1 dict1 dict2 dict1,dict2 fdict dict x 1 y 2 traceback most recent call last file line 1,in typeerror dict...
python序列型別
字元型別 字串字面量 將文字放入單引號 雙引號 三引號中 文件字串 def testdoc testdoc print hello world testdoc hello world testdoc.doc testdoc s i 索引運算子 s i j 切片運算子,s i j stride 擴充套...