美文网首页Python is Best
Python——random模块

Python——random模块

作者: So_ProbuING | 来源:发表于2017-10-20 10:56 被阅读0次

    random 随机数

    • randint(range) 生成范围内的随机数
    random.randint(1,8)生成1-8的随机数 包括8
    
    • randrange(range) 不包含最后
    • choice(str) 随机选择字符
    • sample(str,numer) 在str序列中随机选择number个元素

    相关文章

      网友评论

        本文标题:Python——random模块

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