python 生成随机优惠码(随机字符串)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 生成随机优惠码(随机字符串)相关的知识,希望对你有一定的参考价值。

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

https://github.com/Yixiaohan/show-me-the-code

import random

codeLength = 12
codeCount = 200
codeOrig = "ABCDEFGHIJKLMNOPQRST1234567890"

def makePromoteCode(count):
    for i in range(count):
        promotecode = ""
        for x in xrange(codeLength):
            promotecode += random.choice(codeOrig)
        print promotecode
        
if __name__ == ‘__main__‘:
    makePromoteCode(codeCount)


本文出自 “ryanscn” 博客,请务必保留此出处http://ryanscn.blog.51cto.com/2725212/1751070

以上是关于python 生成随机优惠码(随机字符串)的主要内容,如果未能解决你的问题,请参考以下文章

java 随机数 优惠码 生成 随机字串

Python生成验证码

Python随机生成指定长度字符串并保存到mysql中

Python使用PIL模块生成随机验证码

随机生成六位验证码函数版(python)

Python random随机生成6位验证码示例代码