python3 筆記12.字串支援的函式
#1.upper(),lower(),capitalize()
s = "helLoPyThoN"
# 返回一個新的字串
print(s.upper()) # 全部字母大寫格式
print(s.lower()) # 全部字母小寫格式
print(s.capitalize()) # 首字母大寫格式
#2.find() 查詢子字串,返回子串的首字元索引
s = "I love python!"
print(s.find("love"))
print(s.find("py"))
print(s.find("hcon"))# 當不包含子串時,返回-1
#3.split()字串分割,以列表形式返回分割後的部分
s = "Hello World"
s1 = "Hello:Wor:ld"
print(s.split()) #預設以空格作為分割字元
print(s1.split(":")) #指定以:作為分割字元
# 4.startswith(),endswith() # 判斷字串以xxx開頭/結尾 返回布林值
print("helloworld".startswith("a"))
print("helloworld".startswith("hel"))
print("helloworld".endswith("ld"))
相關文章
- python3 筆記14.列表元組字典支援的函式Python筆記函式
- python3 筆記11.字串的切片和支援運算方法Python筆記字串
- python3 筆記15.通過range()函式來了解函式的作用Python筆記函式
- python3 筆記16.構建函式defPython筆記函式
- Solidity語言學習筆記————18、字串和函式Solid筆記字串函式
- SqlServer中將字串轉utf-8的函式、支援中文的UrlEncode函式SQLServer字串函式
- Python3學習筆記-字串和編碼Python筆記字串
- 如何高效記憶字串函式字串函式
- 筆記:Python函式筆記Python函式
- python筆記-函式Python筆記函式
- 【筆記】普通生成函式筆記函式
- Python3中的函式 大全Python函式
- 字串的相關函式字串函式
- MySQL(四)日期函式 NULL函式 字串函式MySql函式Null字串
- async函式學習筆記。函式筆記
- 生成函式 學習筆記函式筆記
- substr擷取函式 筆記函式筆記
- PHP筆記:建構函式與解構函式PHP筆記函式
- Oracle 字串函式Oracle字串函式
- Oracle 字串函式Oracle字串函式
- 字串函式 metaphone ()字串函式
- 字串函式 print ()字串函式
- 字串函式 explode ()字串函式
- 字串函式 ord ()字串函式
- 字串函式 ltrim ()字串函式
- 字串函式 levenshtein ()字串函式
- 字串函式 lcfirst ()字串函式
- 字串函式 implode ()字串函式
- 字串函式 fprintf ()字串函式
- 字串函式 htmlentities ()字串函式HTML
- 字串函式 htmlspecialchars ()字串函式HTML
- PHP字串函式PHP字串函式
- python3 筆記Python筆記
- MySQL 字串函式:字串擷取MySql字串函式
- Python3 range() 函式用法Python函式
- PHP 每日一函式 — 字串函式 crypt ()PHP函式字串
- PHP 每日一函式 — 字串函式 chr ()PHP函式字串
- PHP 每日一函式 — 字串函式 addslashes ()PHP函式字串