python編程練習---模擬產生隨機數及抽取隨機數

模擬產生在一個範圍的隨機數,及在一個列表中抽取隨機數 基於python3.6 代碼: from random import * i=int(input("你想一次產生幾個隨機數:")) m,n=map(int,input("你想產生哪個範圍內的隨機數:").split()) List=[1,3,6,7,8,5,11,78] while i:     a=uniform(m,n)     a=int
相關文章
相關標籤/搜索