Hello,
adjusted Lotto killas so it works for the UK Thunderball draw.
![[Image: thunder.png]](https://preview.ibb.co/mfodty/thunder.png)
Screenshot of Thunderball number maker running on Linux Lite in terminal and its code in Gedit.
This will pick your 5 number choices from the 39, and then pick your 1 Thunderball number from the 14 numbers.
It will also give you real life choices to make (interactive)
Here is the code -
Copy/paste in to Leafpad document in Home folder and save as thunder.py
Hold down Ctrl and Alt then press t (Ctrl+Alt+t)
Copy/paste or type into terminal -
Hope you enjoy reading this.
adjusted Lotto killas so it works for the UK Thunderball draw.
![[Image: thunder.png]](https://preview.ibb.co/mfodty/thunder.png)
Screenshot of Thunderball number maker running on Linux Lite in terminal and its code in Gedit.
This will pick your 5 number choices from the 39, and then pick your 1 Thunderball number from the 14 numbers.
It will also give you real life choices to make (interactive)
Here is the code -
Code:
from random import *
thunderchoices = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39]
thunderball = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
# Picks 5 numbers from the choices
x = sample(thunderchoices, 5)
# Picks your thunderball
y = sample(thunderball, 1)
print x
print y
print ("You have Options - " "\nDonate a percentage of any wins to your favorite project" "\nDonate the stake instead to your favorite project")
Copy/paste in to Leafpad document in Home folder and save as thunder.py
Hold down Ctrl and Alt then press t (Ctrl+Alt+t)
Copy/paste or type into terminal -
Code:
python thunder.py
Hope you enjoy reading this.