美文网首页
python生成随机数

python生成随机数

作者: zzl灬 | 来源:发表于2020-06-10 11:25 被阅读0次

    python 生成随机数

    import random
    print random.randint(0,5)    #生成0-5之间的随机整数
    print random.uniform(0, 5)   #生成0-5之间的随机浮点数
    

    相关文章

      网友评论

          本文标题:python生成随机数

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