Sorting Hat

The program sorting_hat.py asks the user to hit the [Enter] key to find out which Hogwarts House they've been sorted into: Gryffindor, Hufflepuff, Ravenclaw, or Slytherin. (If you're not sure what this problem refers to, see the https://youtu.be/zkjcETPvONA. )

Once the user hits the [Enter] key, a random integer 0-3 is generated. A 0 represents "Gryffindor", 1 is "Hufflepuff", 2 is "Ravenclaw", and 3 is "Slytherin". Additionally, if any house but Slytherin is indicated, the program should also print a note congratulating them on being in a great house.

Sample interactions:

It's time for the Sorting Hat!
Press [Enter] to find which Hogwarts House you will be placed in!
Slytherin!

It's time for the Sorting Hat!
Press [Enter] to find which Hogwarts House you will be placed in!
Gryffindor!
Congratulations!
That's great news!