Im only new to python but im trying to write a code that will allow me to randomly generate a number between 1 & 15,
I know that part is
import random
def main():
number=random.randrange(15) + 1
But im not sure where I need to go to from here to enable me to:
1. prompt the user to enter a number between 1 & 15, then tell the user whether it is too high or low.
Im also trying to throw in a couple of random choices that allows me to have to random choices going at once but it won't always come back with two choices (hence random I guess!).
What I want is to be able to have a number of options available, keep a count on them (not sure how to write that one), and prompt the player when they reach a score on the game.
I know it probably sounds comfusing but any help would be great.
crackers