本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。
要求
做为 Apple Store App 独立开发者,你要搞限时促销,为你的应用生成激活码(或者优惠券),使用 Python 如何生成 200 个激活码(或者优惠券)?
代码
代码语言:javascript复制import random
import string
str=string.ascii_uppercase string.digits
def getKey(length):
key=''
for i in range(0,int(length)):
key =random.choice(str)
return key
def main():
length=input('please input length of key')
number=input('please input number of key')
keys=[]
for i in range(0,int(number)):
key=getKey(length)
if not key in keys:
keys.append(key)
else:
i-=1
path='temp/keys.txt'
with open(path,'w') as file:
for item in keys:
file.write(item 'n')
main()
Post Views: 321