Hey there!
Here is my portfolio project for CS 101: Introduction to Programming! I decided to recreate the TV game show “Who Wants to be a Millionaire” as a terminal game. This is my first project so any feedback would be greatly appreciated!
The program prints an ASCII art banner and prompts the player to enter their name before starting the game. Then the player is asked a series of questions with four possible answers and must choose the correct one to advance to the next level. The game ends when the player either wins the grand prize of 1 million points or answers a question incorrectly.
The game is written in Python and utilizes the random
module to randomize the order of the questions and options and an input()
function to allow the player to interact with the game. The game also features a Player
class to keep track of the player’s name and score, along with a get_user_input()
function to check if the validity of the user’s input. If the game ends, the player can choose to restart or quit the game.
View the code here → GitHub - zaneeeee/CS101-terminal_game: who wants to be a millionaire terminal game