这篇文章将为大家详细讲解有关python如何使用randint()函数,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
randint()函数
描述:randint()方法将随机生成一个整数,它在[x,y]范围内 ;有点等价于randrange(x,y+1).
语法
import random random.randint(x,y)
参数:
-
x — 指定范围内的开始值,包含在范围内
-
y — 指定范围内的结束值,包含在范围内。
实例演示
>>> print random.randrange(5,10); 9 >>> print random.randint(5,10); 6
python有哪些常用库
python常用的库:1.requesuts;2.scrapy;3.pillow;4.twisted;5.numpy;6.matplotlib;7.pygama;8.ipyhton等。
最新评论