05-19-2018, 12:12 PM
removed not on topic, not to be aiding the hijacking of my thread.
![[Image: next.png]](https://preview.ibb.co/bMioT8/next.png)
# imports random function
import random
# labelling for lotto number output
print ("Your UK lotto numbers are - ")
# Picks 6 random numbers between 1 and 59
# range goes to 60 so that 59 is inclusive, 60 is not inclusive
# .sample does not duplicate numbers picked
# Outputs these 6 results in a list
print(random.sample(range(1, 60),6))
# interactivity - prints options
print ("You have Options - " "\nDonate a percentage of any wins to your favorite project" "\nDonate the stake instead to your favorite project")python next.py![[Image: eunext.png]](https://preview.ibb.co/iSNU1T/eunext.png)
# imports random function
import random
# labelling for lotto number output
print ("Your EuroMillions numbers are - ")
# Picks 5 random numbers between 1 and 50
# range goes to 51 so that 50 is inclusive, 51 is not inclusive
# .sample does not duplicate numbers picked
# Outputs these 5 results in a list
print(random.sample(range(1, 51),5))
print ("Your Lucky Stars are - ")
print(random.sample(range(1, 13),2))
# interactivity - prints options
print ("You have Options - " "\nDonate a percentage of any wins to your favorite project" "\nDonate the stake instead to your favorite project")python eunext.py![[Image: X5qGkCg.png]](https://imgur.com/X5qGkCg.png)