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筆記函式
- Python筆記|Python3中沒有reduce函式的原因Python筆記函式
- Solidity語言學習筆記————18、字串和函式Solid筆記字串函式
- SqlServer中將字串轉utf-8的函式、支援中文的UrlEncode函式SQLServer字串函式
- 如何高效記憶字串函式字串函式
- php字串擷取函式,支援中文擷取PHP字串函式
- Python3學習筆記-字串和編碼Python筆記字串
- 12.管理使用者(筆記)筆記
- 12.目錄操作(perl筆記)筆記
- python筆記-函式Python筆記函式
- 筆記:Python函式筆記Python函式
- C++筆記--函式C++筆記函式
- 【筆記】普通生成函式筆記函式
- PHP的字串函式PHP字串函式
- MYSQL的字串函式MySql字串函式
- 字串函式之Strtok()函式字串函式
- async函式學習筆記。函式筆記
- substr擷取函式 筆記函式筆記
- Go 函式 學習筆記Go函式筆記
- 函式-PHP手冊筆記函式PHP筆記
- mysql常用函式--個人筆記MySql函式筆記
- 【筆記】oracle 統計函式筆記Oracle函式
- 分析函式(學習筆記)函式筆記
- 生成函式 學習筆記函式筆記
- PHP筆記:建構函式與解構函式PHP筆記函式
- MySQL(四)日期函式 NULL函式 字串函式MySql函式Null字串
- Python3中的函式 大全Python函式
- 字串的相關函式字串函式
- PHP中的字串函式PHP字串函式
- 字串函式 fprintf ()字串函式
- 字串函式 htmlentities ()字串函式HTML
- 字串函式 htmlspecialchars ()字串函式HTML
- 字串函式 implode ()字串函式
- 字串函式 explode ()字串函式
- 字串函式 lcfirst ()字串函式