1、格式化常用方法
code = 1
name = 2
path_1 = f'_'
path_2 = '_'.format(code,name)
2、
"""獲取路徑前半部分和後半部分
如/root/test/path/stb
pref = /root/test/path
suff = stb
"""import os
def _get_gep(s):
if isinstance(s, bytes):
return b'/'
else:
return '/'
def split(path):
path = os.fspath(path) # 判斷路徑是否是str和bytes型別,否丟擲異常
sep = _get_gep(path) # 獲取分隔符'/'
i = path.rfind(sep) + 1 # rfind函式是從右往左查詢,但返回的位置是從左到右找到的位置
head, tail = path[:i], path[i:]
if head and head != sep * len(head):
head = str(head).rstrip(sep) #去掉最右邊'/'分隔符
return head, tail
if __name__ == "__main__":
path = "/root/test/path/stb"
head, tail = split(path)
print(head, tail)
Python 常用操作
b np.array a a是list型別,b為ndarray型別。2 檢視元素型別 type object 3 檢視列表的維度 要先轉化為ndarray型別,再檢視維度 np.array a shape a為列表4 直接獲取csv檔案中的某一列 df pd.read csv d 01.csv a ...
Python 常用操作
陣列操作 畫圖相關 檔案操作 代表乘法,向量對應位置相乘 代表乘方 eg.2 5 32 除法 除法後取整 round 1.234566778,2 1.23 a 100000000 print e a b e a b 1.000000e 09 iloc 即index locate 用index索引進行...
python常用操作
使用清華映象安裝python第三方庫 pip install i module name 使用阿里雲映象 pip install bpython i module name 需要安裝的模組名 使用 pyinstaller 打包 python 程式 pyinstaller f w i icon.ico...