要贏得強力球彩票(一個極不可能的事件,所以不要浪費你的時間),你必須正確選擇六個數字。前五個數字從包含53個球的鼓中抽取,第六個從包含42個球的鼓抽取。這樣做的可能性是120,526,770中的1。強力球號碼生成器
輸出需要在表格:
官方(但無果而終)強力球數發生器
多少組數字? 3
你的數字:3 12 14 26 47強力球:2個
你的數字:1 4 31 34 51強力球:17個
你的數字:10 12 49 50 53強力球:35
import random
#Powerball
print "Offical Powerball number generaor"
x = int(raw_input("How many sets of numbers? "))
z = range(1,42)
z1 = random.choice(z)
def list1():
l1=[]
n=1
while n<=5:
y = range(1,53)
y1 = random.choice(y)
l1.append(y1)
n +=1
print sorted(l1)
i=1
while i<=x:
# print "Your numbers: " + list1() + "Powerball: "+ str(z1)
print list1()
raw_input("Press<enter>")
我代碼的輸出進行無限循環。我必須殺死它。該消息是:
None
[2, 7, 22, 33, 42]
None
[15, 19, 19, 26, 48]
None
[1, 5, 7, 26, 41]
None
[7, 42, 42, 42, 51]
None
..... etc ....
如果在輸出循環中輸入'i',那麼你不會遞增值。 – 2013-10-22 23:18:00