python定義函數,隨機生成6位的密碼(字母數字隨機組合,包含大小寫)

定義函數pwd(),隨機生成6位的密碼(字母數字隨機組合,包含大小寫),要求在主模塊中調用該函數,並輸出。python import random def pwd(): all_char = '0123456789qazwsxedcrfvtgbyhnujmikolpQAZWSXEDCRFVTGBYHNUJIKOLP' index = len(all_char) + 1
相關文章
相關標籤/搜索