語法
str.expandtabs(tabsize = 8)
作用把字串 str 中的 tab 符號轉為空格,tab 符號預設的空格數是 8 。
注意對於字串中的直接敲入的tab無效,對字串中的轉義字元(\t)有效。
示例:print
('aaa\tbbb'
.expandtabs(tabsize=8)
)>> aaa bbb
print
('aaa\tbbb'
.expandtabs(tabsize=4)
)>> aaa bbb
print
('aaa bbb'
.expandtabs(tabsize=8)
)>> aaa bbb
print
('aaa bbb'
.expandtabs(tabsize=4)
)>> aaa bbb
結論:在使用的時候一定要注意這個tab縮排一定要是『\t』,而不是手動輸入的tab鍵。 python中的字串
方法1 用字串的join方法 a a b c d content content join a print content 方法2 用字串的替換佔位符替換 a a b c d content content s s s s tuple a print content 我們可以通過索引來提取想要獲取的...
python中的字串
b nihao hahah xixi 輸出 nihao nhahah nxixi n 原字串 big r this hhaha big輸出 this nhhaha 還原為unicode字串 hello u hello u0020world hello輸出 hello world 字串是不可以改變的 ...
python中的字串
字串連線操作 字串複製操作 字串索引操作,通過索引訪問指定位置的字元,索引從0開始 字串取片操作 完整格式 開始索引 結束索引 間隔值 結束索引 從開頭擷取到結束索引之前 開始索引 從開始索引擷取到字串的最後 開始索引 結束索引 從開始索引擷取到結束索引之前 擷取所有字串 開始索引 結束索引 間隔值...