python常用函式總結

2021-09-13 09:46:31 字數 655 閱讀 3146

1 python中struct.pack()和struct.unpack()用法詳細說明

2 找到列表裡長度最大的詞語

max( m_names , key=len)
3 建立單詞和索引的對映

# chars 為單詞集合

res = dict((c, i) for i, c in enumerate(chars))

4 實現名稱label數位化

gendermap=

# row 的格式如下:mary,f,7065

for row in rows:

name = row[0].upper()

gender = gendermap[row[1]]

count = int(row[2])

5 判斷乙個字串包含的是不是全是英文

def all_is_alpha(word):

for i in word:

word = word.replace(' ','')

if(i.upper()>'z' or i.upper()<'a'):

return false

return true

Python常用內建函式總結

內建方法 說明 init self,初始化物件,在建立新物件時呼叫 del self 釋放物件,在物件被刪除之前呼叫 new cls,args,kwd 例項的生成操作 str self 在使用print語句時被呼叫 getitem self,key 獲取序列的索引key對應的值,等價於seq key...

python中os常用函式總結

函式 作用os.getword 返回當前工作目錄 os.lisdir path 返回包含當前目錄下所有檔案的列表 os.path.abspath path 返回path的絕對路徑 函式作用 os.system 執行shell命令 os.system cmd 在windows下執行終端 os.syst...

Python字典常用函式方法總結

2 字典keys函式 3 字典的 values函式 4 字典通過key的獲取value 5 字典的刪除 6 字典的pop功能 7 del在字典中的用法 8 字典的複製 copy函式 9 字典中的成員判斷 10 字典中的末尾刪除函式 popitem 11 所有資料型別與布林值的關係 字串,列表,lis...