python --github 刷题

Posted 拂髯客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python --github 刷题相关的知识,希望对你有一定的参考价值。

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

import random
def gen_activate_code(length=8):
    activate_code_list = []
    for i in range(10):
        activate_code_list.append(str(i))
    
    for i in range(65,91):
        activate_code_list.append(chr(i))
        
    for i in range(97,123):
        activate_code_list.append(chr(i))
    
    activate_code = ''.join(random.sample(activate_code_list,length))
    
    return activate_code

print(gen_activate_code())

以上是关于python --github 刷题的主要内容,如果未能解决你的问题,请参考以下文章

5个适合新手练习的Python刷题网站

火爆Github的刷题攻略,现在配套网站上线了!!力扣刷题网站,刷题路线

怎样找到二级Python的刷题工具

火爆Github的刷题攻略,现在配套网站上线了!!值得一看,从此学习算法不再迷茫

Java工程师面试题,二级java刷题软件

GitHub疯传!北大学霸的LeetCode刷题笔记火了