這篇文章主要介紹了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='' c=0 while c<cols: s=random.randint(minNum,maxNum) line+=str(s) line+=' ' c+=1 r+=1 print(line) except ValueError as err: print err
以上是實例介紹Python2隨機數列產生器的詳細內容。更多資訊請關注PHP中文網其他相關文章!