字串的定義,用雙引號與單引號都可以
name="hello'world!" 正確
name="hello"world!" 錯誤
name = 'hello"world' 正確
name = 'hello'world' 錯誤
title方法:將字串中單詞的首字母變為大寫,其他字母均為小寫
name="love live"
print(name.title())
輸出為:love live。無論name是"love live"還是"love live",其輸出結果都一樣。
upper()方法:將字母全部變為大寫字母。
lower()方法:將字母全部變為小寫字母。
rstrip()方法:去除字串中末尾的空格符
lstrip()方法:刪除字串開頭的空格
strip()方法:刪除開頭與末尾的空格
字串與數字的合併:
age=23
python 中的字串操作
s.strip lstrip rstrip strcpy sstr1,sstr2 sstr1 strcpy sstr2 sstr1 sstr1 strcpy2 print sstr2 strcat sstr1,sstr2 sstr1 strcat sstr2 sstr1 sstr2 print ss...
Python中字串操作函式
1.求長度 len eg a hello len a 5 注意,如果保護中文,要注意了,len函式得不到期望的值 2.把所有字母都換成大寫 upper 3.把所有字母換成小寫 hello world lower 4.把字串中的首字母大寫,並把剩餘字母轉換成小寫 hello world capital...
Python中字串切片操作
一 取字串中第幾個字元 print hello 0 表示輸出字串中第乙個字元 print hello 1 表示輸出字串中最後乙個字元 二 字串分割 print hello 1 3 第乙個引數表示原來字串中的下表 第二個闡述表示分割後剩下的字串的第乙個字元 在 原來字串中的下標 這句話說得有點囉嗦,直...