s = 'ilovepython'
s[0]='i'
s[-1] = 'n'
s = 'ilovepython'
s[1:5]:s[開始下標,包含: 結束下標,不包含] = 'love'
s[:5]:左下標省略表示 從0開始,等同於 s[0:5]
s[:-1]:左邊從0開始,去掉最後乙個字元,其作用是去掉字串尾字元。
a = 'hello word
'a.replace(
'word
','python
')= '
hello python
'
house_customized_id = '_'.join((community_id , house_area , house_structure , house_floor))
cummunity_id_temp = community_link.split('/')[3].split('
_')[1]
if('-'in house_floor):
字串操作常用函式
puts printf s p gets 記憶體是否合法 scanf s p strlenmemset memset params初始化物件,初始化成什麼字元,多大 strcpy strcpy 目標,複製物件 strncpy 拷貝的最大長度 strncpy 目標,複製物件,長度 strcat str...
python 字串常用操作
coding utf 8 str1 dafhgfshhk lfhgj hhs dhfs len str1 計算長度,當有中文時需要顯示轉換為utf 8編碼,否則計算的結果會有誤差 str2 中文 len str2 結果是 6 將字串顯示轉換為utf 8 str3 str2.decode utf 8 ...
python 字串常用操作
name my name is yy print name.capitalize 首字母大寫 print name.count y 統計y的個數 print name.center 50,以name內容沒中心,不夠的用 代替 print name.endswith yy 以yy結尾 布林值 name...