首页 > 代码库 > 每天一个 Python 小程序--0001

每天一个 Python 小程序--0001

第 0001 题:做为 Apple Store App 独立开发者,你要搞限时促销,为你的应用生成激活码(或者优惠券),使用 Python 如何生成 200 个激活码(或者优惠券)?

 

--------------------------------------------------------------------------------------------------------------------------------------------------

 

# -*- coding: utf-8 -*-# 做为 Apple Store App 独立开发者,你要搞限时促销,为你的应用生成激活码(或者优惠券),使用 Python 如何生成 200 个激活码(或者优惠券)?import uuiddef create_code(number=200):    result = []    while True is True:        temp = str(uuid.uuid1()).replace(-, ‘‘)        if not temp in result:            result.append(temp)        if len(result) is number:            break    return resultprint create_code()

 

每天一个 Python 小程序--0001