码迷,mamicode.com
首页 > 编程语言 > 详细

每天一个 Python 小程序--0001

时间:2015-01-23 00:43:39      阅读:275      评论:0      收藏:0      [点我收藏+]

标签:

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

 

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

 

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

import uuid


def 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 result

print create_code()

 

每天一个 Python 小程序--0001

标签:

原文地址:http://www.cnblogs.com/mazi12/p/4242966.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!