Python Show-Me-the-Code 第 0001 題 產生啟用碼

來源:互聯網
上載者:User

標籤:python   啟用碼   

第 0001 題:做為 Apple Store App 獨立開發人員,你要搞限時促銷,為你的應用產生啟用碼(或者優惠券),使用 Python 如何產生 200 個啟用碼(或者優惠券)?

不知道用什麼方法產生啟用碼比較靠譜,所以就用字母和數位隨機組合了。如果有更好的方法請告訴我:)

產生的大概是這樣子的:

0001.產生啟用碼.py

#!/usr/bin/env python#coding: utf-8import string, random#啟用碼中的字元和數字field = string.letters + string.digits#獲得四個字母和數位隨機組合def getRandom():    return "".join(random.sample(field,4))#產生的每個啟用碼中有幾組def concatenate(group):    return "-".join([getRandom() for i in range(group)])#產生n組啟用碼def generate(n):    return [concatenate(4) for i in range(n)]if __name__ == ‘__main__‘:    print generate(200)

Python Show-Me-the-Code 第 0001 題 產生啟用碼

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.