python 整型 字串常用方法 for迴圈

2022-09-05 07:51:11 字數 566 閱讀 1697

# name = "meet" # 計算機從0開始數

#0123 (索引值|下標值) 從左向右

#-4-3-2-1 # 從右向左

# print(name[2]) # 通過索引準確定位內容

# print(name[-4]) # 通過索引準確定位內容

# low

# name = "meet_alex_wusir"

# a = name[5] # a

# b = name[6] # l

# c = name[7] # e

# d = name[8] # x

# print(a+b+c+d)

startswith 以什麼開頭

endswith 以什麼結尾

count 計數

strip 去頭尾兩端的空格,製表符和換行符

stlip 分割,分割後是列表

replace 替換

is系列

for 關鍵字

python 字串常用方法

python 字串的常用方法 1.len str 字串的長度 2.startswith str 檢視字串是否以str子串開頭,是返回true,否則返回false 3.index str 查詢字串中第一次出現的子串str的下標索引,如果沒找到則報錯 4.find str 查詢從第0個字元開始查詢第一次...

Python字串常用方法

count 獲取字串中某個字元的數量。str python count str.count o 2strip 刪除字串首位的空格,以及換行。str1 hello python str2 hello python str3 hello python str1.strip str2.strip str3...

python字串常用方法

string.title python title 方法返回 標題化 的字串,就是說所有單詞都是以大寫開始,其餘字母均為小寫 見 istitle string.upper python upper 方法將字串中的小寫字母轉為大寫字母。string.lower 將字串的大寫字母轉為小寫字母 strin...