字串內建方法練習

2022-07-26 07:36:10 字數 717 閱讀 3327

#1、upper() :將字串轉換成大寫

# print("abcd".upper())

#2、find :找出,顯示

print("abcd".find('cd')) #列印c所在位置的索引

#3、split:用逗號分割字串:

print("a,b,c,d".split(',')) #列印:['a', 'b', 'c', 'd']

#4、replace :替換

string = "python is good"

print(string.replace('python', 'python')) ##列印:python is good

#5、len:獲取字串的長度:

str= 'jsdfhjdgjhfg'

print(len(str)) #列印:12

#6、startswith:判斷開頭字母

a = "this is the book"

print(a.startswith('this')) #列印true

#7、lower:將字串轉換成小寫

print("abcd".lower())

#8、strip():移除字串頭尾指定的字元(預設為空格或換行符)

# 或字串行, \n 就是換行符

print("this is a book\n".strip()) #列印 :this is a book

內建字串方法

python3 內建的字串方法如下所示 1capitalize 把字串的第乙個字母轉為大寫 2center width,fillchar 返回使用fillchar填充的字串,原始字串以總共width列為中心。3count str,beg 0,end len string 計算字串 現有多少次str或...

字串內建方法

concat 字串拼接 var str1 hello var str2 world str1.concat str2 charat chartcodeat var s str3.charat index var str4 你好 var m str4.charcodeat replace 字串的替換 ...

python基礎之字串內建方法練習

1.將字串 abcd 轉成大寫 2.計算字串 cd 在 字串 abcd 現的位置 3.字串 a,b,c,d 請用逗號分割字串,分割後的結果是什麼型別的?4.喜歡 format name 李雷 執行會出錯,請修改 讓其正確執行 5.string python is good 請將字串裡的python替...