美文网首页
python 趣味题

python 趣味题

作者: Zeno00 | 来源:发表于2018-08-14 23:06 被阅读0次

    抽空刷刷题。

    双色球

    import ramdom
    def double_chromosphere():
        #  从1-33号中随机选取6个蓝色球
        blue = random.sample([b for b in range(1,34)],6)
        # 从1-16号中随机选取1个红色球
        red = random.choice([r for r in range(1,17)])
        blue.append(red)
        return blue
    
    结果: 双色球

    相关文章

      网友评论

          本文标题:python 趣味题

          本文链接:https://www.haomeiwen.com/subject/qjibbftx.html