首頁  >  文章  >  後端開發  >  實例介紹Python2隨機數列產生器

實例介紹Python2隨機數列產生器

巴扎黑
巴扎黑原創
2017-09-05 11:35:531579瀏覽

這篇文章主要介紹了Python2隨機數列生成器,結合簡單實例形式分析了Python基於random模組操作隨機數的相關實現技巧,需要的朋友可以參考下

本文實例講述了Python2隨機數列產生器。分享給大家參考,具體如下:


#filename:randNumber.py
import random
while True:
  try:
    row=int(raw_input('Enter the rows:'))
    cols=int(raw_input('then Enter the cols:'))
    minNum=int(raw_input('then Enter the minNumber:'))
    maxNum=int(raw_input('then Enter the maxNumber:'))
    r=0
    while r<row:
      line=&#39;&#39;
      c=0
      while c<cols:
        s=random.randint(minNum,maxNum)
        line+=str(s)
        line+=&#39;  &#39;
        c+=1
      r+=1
      print(line)
  except ValueError as err:
    print err

以上是實例介紹Python2隨機數列產生器的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn