Python algorithm for guessing game
1. play = input("Do you want to play? Y?N" )
4. N = random.randint(1,100)
7. guess = int(input("Enter a guess: ")
10. print("Your guess is too low.")
12. print("Well done. You guessed correctly!")
13. play = input("Do you want to play again?")
14. print("You have ended the game.")