herrDeng網內搜尋

自訂搜尋

Ads

2021年12月3日 星期五

Python套件numpy.random與大樂透開獎

 
numpy.random與大樂透開獎與函數練習
  1. print('介紹numpy的random')
  2. import numpy as np
  1. x=np.random.randn(10) #高斯分佈
  2. y=np.random.rand(10)
  3. print('x=',x)
  4. print('y=',y)
array計算非常快速
  1. x=np.random.randint(5, size=10)+1
  2. print(x)
  3. arr = np.arange(1,50)
  4. print(type(arr))
  5. print('arr不是list而是array,計算非常快速',arr)
洗牌
  1. np.random.shuffle(arr)
  2. print('這叫洗牌=>\n',arr)
重複選取,寫成函數
  1. def choice_w_replace(n):
  2. y=np.random.choice(arr,n, replace=True )
  3. print('這是重複選取=>\n',y)
  4. choice_w_replace(6)
非重複選取,大樂透開獎,寫成函數
  1. def choice_wo_replace(n):
  2. global x
  3. x=np.random.choice(arr,n, replace=False )
  4. print('非重複選取,這叫大樂透開獎=>\n',x)
  5. choice_wo_replace(6)
  6. x.sort()
  7. print(x)

沒有留言:

Related Posts Plugin for WordPress, Blogger...

熱門文章