You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
223 B
Python
13 lines
223 B
Python
11 months ago
|
from random import randint
|
||
|
#Challenge 9
|
||
|
|
||
|
win1 = randint(1,10)
|
||
|
win2 = randint(11,20)
|
||
|
win3 = randint(21,30)
|
||
|
|
||
|
winners = str(win1) + " " + str(win2) + " " + str(win3)
|
||
|
print(winners)
|
||
|
for winner in winners:
|
||
|
print(winner)
|
||
|
|