[python每日一练]--0001:生成激活码

题目链接:https://github.com/Show-Me-the-Code/show-me-the-code
我的github链接:https://github.com/wjsaya/python_spider_learn/tree/master/python_daily

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

代码:

#coding: utf-8
#第 0001 题:做为 Apple Store App 独立开发者,你要搞限时促销,为你的应用生成激活码(或者优惠券),使用 Python 如何生成 200 个激活码(或者优惠券)
#Auther: wjsaya
from random import choice
import string
import os

def main():
    if os.path.exists("./activecode.code"):
        print ("已经存在activecode.code文件,已经删除")
        os.remove("./activecode.code")

    dict = string.ascii_letters[:]
    #设定字典为'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
    count = input("请输入激活码个数:")
    if count == "":
        count = "1"

    length = input("请输入激活码长度:")
    if length == "":
        length = "8"

    for i in range(0,int(count)):
        code = get_code(dict, length)
        with open ('activecode.code', 'a+') as f:
            f.write(code+'\n')
    #通过count限制激活码个数,循环调用get_code来计算激活码 

def get_code(dict, length):
    #根据给定字典,长度来得出激活码
    code = ""
    for i in range(0,int(length)):
        code = code+str(choice(dict))
    return code


if __name__ == "__main__":
    main()

效果图:
效果图

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值