name =
" royal"
# 1) 移除 name 變數對應的值兩邊的空格,並輸出處理結果
res = name.strip(
)print
(res)
# 2) 判斷 name 變數對應的值是否以 「ro」 開頭,並輸出結果
res = name.startswith(
'ro'
)print
(res)
# 3) 判斷 name 變數對應的值是否以 「l」 結尾,並輸出結果
res = name.endswith(
'l')
print
(res)
# 4) 將 name 變數對應的值中的 「y」 替換為 「o」,並輸出結果
res = name.replace(
'y',
'o')
print
(res)
# 5) 將 name 變數對應的值根據 「o」 分割,並輸出結果。
res = name.split(
'o')
print
(res)
# 6) 將 name 變數對應的值變大寫,並輸出結果
res = name.upper(
)print
(res)
# 7) 將 name 變數對應的值變小寫,並輸出結果
res = name.lower(
)print
(res)
# 8) 請輸出 name 變數對應的值的第 2 個字元?
res = name[0:
2]print
(res)
# 9) 請輸出 name 變數對應的值的前 3 個字元?
res = name[0:
3]print
(res)
# 10) 請輸出 name 變數對應的值的後 2 個字元?
res = name[-2
:]print
(res)
# 11) 請輸出 name 變數對應的值中 「e」 所在索引位置?
方法一
res = name.index(
'o')
print
(res)
方法二
res = name.find(
'o')
print
(res)
# 12) 獲取子串行,去掉最後乙個字元。如: abcd 則獲取 abc
res = name[:-
1]print
(res)
字串的常規操作
選出數字 includeint main return 0 選出aeiou等母音字母 includeint main str1 count 0 puts str1 return 0 字串從末尾開始計算 includeint main return 0 description 寫一函式,使輸入的乙個字...
js字串常規操作
字串 支付穿建立 1.var str hello 2.var str new string 不能使用陣列常用方法 字串的常用方法 1.charat 按照索引查詢字串的內容,並返回,語法 字串.charat 需要查詢的索引 返回值,對應索引的字串,沒有就是目標空字元 2.charcodeat 對應索引...
python之字串常規操作
python不允許直接與其他型別的資料拼接 str1 今 天 一 共 花 了 str2 元錢 num 10print str1 str num str2 str3 str1.split 3 計算字串的長度 print len str1 擷取字串 print str1 2 5 分隔字串 print s...