標題:
亂數 (一) - choice()、randint()
[打印本頁]
作者:
陳育霖
時間:
2024-1-20 09:35
標題:
亂數 (一) - choice()、randint()
from random import *
l=[2,5,1,7]
print(choice(l)) #於串列中任選一元素
print(random()) #產生範圍為 0<=x<1 的隨機浮點數
print(uniform(-3,3)) #產生範圍為 -3<=x<3 的隨機浮點數
print(randint(1,3)) #產生範圍為 1<=x<=3 的隨機整數
print(randrange(3)) #產生範圍為 0<=x<3 的隨機整數
print(randrange(1,3)) #產生範圍為 1<=x<3 的隨機整數
print(randrange(1,6,2)) #產生從1開始到5為止,間距為2的隨機整數
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2