天天看點

元進Python(1)---字典添加鍵值對和打包生成可執行檔案

1.【字典添加鍵值對】

Mest=['A','B','C']

i=0

mapping={}

while i<len(Mest):

    mapping.update({i:Mest[i]})

    i+=1
    
print(mapping)      
(venv) H:\Alphism\venv\Scripts>python pyinstaller.exe -F -w -i mest.ico test.py