您的位置:首页 > 编程语言 > Python开发

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

2017-06-16 17:42 337 查看
题目链接: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()


效果图:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  python 练习