This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Header for file naming purposes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Header for gist naming purposes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Samantha Holderman | |
| # This program plays multiple rounds of a Hi-Low game with the user | |
| # The user chooses a number between 1 - 100 | |
| # The program tells the user higher or lower, and the user guesses again | |
| # To win, user must guess the correct number in 8 rounds | |
| # The first to reach 5 wins, wins the game |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Samantha Holderman | |
| # Program to manipulate an image file and save it as 3 changed files. | |
| #Global Constants | |
| MAX_COLOR = 255 | |
| FILE_TYPE = ".ppm" # Change file type here | |
| # Starting text giving basic program information | |
| def intro(): |