python --github 刷題
阿新 • • 發佈:2018-08-29
cti 限時 sample turn 刷題 random imp () []
第 0001 題:做為 Apple Store App 獨立開發者,你要搞限時促銷,為你的應用生成激活碼(或者優惠券),使用 Python 如何生成 200 個激活碼(或者優惠券)?
import random def gen_activate_code(length=8): activate_code_list = [] for i in range(10): activate_code_list.append(str(i)) for i in range(65,91): activate_code_list.append(chr(i)) for i in range(97,123): activate_code_list.append(chr(i)) activate_code = ''.join(random.sample(activate_code_list,length)) return activate_code print(gen_activate_code())
python --github 刷題