b =
"我想居中"
print
(b.center(80)
)print
(b.center(80,
"-")
)
h =
'my name is lexi'
print
(h.find(
'm')
)print
(h.index(
'n')
)#兩個函式都可限制搜尋範圍
print
(h.find(
'n',0,
2))#同時制定起點和終點
print
(h.index(
'n',2)
)#只制定了起點
#合併乙個字串列表
sep =
["1"
,"3"
,"4"
,"5"
]seq =
'+'seq.join(sep)
#用 join 位址拼接場景
dirs ='',
'usr'
,'bin'
,'env'
print
('c:'
+'\\'
.join(dirs)
)
'hello world'
.lower(
)'classical my girl'
.title(
)#首詞大寫
#在string模組中有個capwords可以實現首詞大寫
import string
string.capwords(
"that's your book"
)
'this is your book'
.replace(
'is'
,'eez'
)
'1+2+3+4+5'
.split(
'+')
#去除輸入的空格
k =input
("請輸入乙個數字"
)print
(k.strip())
#去除指定的字元(只能去除開頭或者結尾的字元,中間的還是會被保留)
clear =
'###$%%^^%$#^!#!$!'
print
(clear.strip(
"#")
)
python基礎筆記1-變數命名規則
python基礎筆記3-列表、元組、字典
python學習筆記2 字串
總結 字串是不可變變數,不能通過下標修改其值 字串的方法都不會改變字串原來的值,而是新生成乙個字串 一 3種寫法 單引號,雙引號,三引號 二 下標和切片 下標 字串裡每個字元所在的位置,也叫索引。strname n 表示strname這個字串的下標為n對應的字元的值。切片 取字串乙個下標區間的值。s...
python學習筆記2 字串
1 python3中的字串可以使用引號 或 開建立。a hello world print type a 結果 2 python沒有c語言等其他語言中 char 型別,哪怕只有乙個字元,python也按照字串處理。python訪問子字串,可以使用方括號擷取字串。a 0 h a 1 5 hell 當在...
Java基礎(2 字串)
public char charat int index 返回字串中第index個字元 public int length 返回字串的長度 public int indexof string str 返回字串中出現 str 的第乙個位置 public int indexof string str i...