1.字元轉ascii數字
ord (字元) = ascii表裡的位置
chr (ascii表裡的位置) = 字元
2.迭代中獲取list/str下標
for i,ch in enumerate(str/list):
i 下標
ch 字元
3.獲取字串中某個字元的下標
在s字串裡面在[start,end)的區間裡查詢substr的下標
s.index(substr,start ,end) -> idx(下標)
s.rindex(substr,start ,end) ->idx(下標--右邊開始的乙個substr)
# like s.find() but raise valueerror when the substring is not found.
python 常用方法 路徑處理
import os os.getcwd 獲取當前路徑 os.walk path 獲取乙個元組 起始的路徑,路徑下的資料夾,起始路徑下的檔案 第乙個為起始路徑,第二個為起始路徑下的資料夾,第三個是起始路徑下的檔案。遍歷資料夾下面的某種格式的檔案 比如txt for path,dics,files in...
python 日期處理的常用方法
將不規整的日期 字串 轉為標準日期,並提取年月,年份作為新字段 法一 datetime.strptime x,d.m.y 將字串x轉為datetime,注意字串格式不統一,也許為 m d y 法二 df date2 pd.to datetime df date format m.d.y 將字串轉為日...
python字串處理常用方法
1 str.find str.rfind str.index str.rindex str.count s hello python,hello world s.find hello 從左側開始查詢 0 s.rfind hello 從右側開始查詢 13 s.find wahaha 查詢失敗,返回 1...