python3 筆記12.字串支援的函式

藥藥君發表於2018-10-18
#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"))



 

相關文章