-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path0001.py
More file actions
42 lines (32 loc) · 1.25 KB
/
Copy path0001.py
File metadata and controls
42 lines (32 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#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"
get_code(dict, length, count)
def get_code(dict, length, count):
#根据给定字典,长度来得出激活码
for i in range(0,int(count)):
code = ""
#通过count限制激活码个数,循环调用choice来计算激活码
for i in range(0,int(length)):
code = code+str(choice(dict))
save_to_file(code)
def save_to_file(code):
#保存到文件
with open ('activecode.code', 'a') as f:
f.write(code+'\n')
if __name__ == "__main__":
main()