Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zac-dot/pyguesser
pyGuesser, a simple number guessing game done in Python 3.
https://github.com/zac-dot/pyguesser
python
Last synced: about 1 month ago
JSON representation
pyGuesser, a simple number guessing game done in Python 3.
- Host: GitHub
- URL: https://github.com/zac-dot/pyguesser
- Owner: Zac-dot
- License: mpl-2.0
- Created: 2020-11-17T10:02:17.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-03-16T11:33:16.000Z (almost 4 years ago)
- Last Synced: 2024-05-03T10:30:35.857Z (9 months ago)
- Topics: python
- Language: Python
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pyGuesser
This was created for a intro class that taught Python in Novemeber of 2020. The original goal
was to show various functions of python learned throughout and showed in some sort of program,
no matter how simple of complex it was. In order for me to show that I rewrote the LetsGuess-project
that is featured on my profile from Java to Python.## pyguesser.py
Main file to be ran. Prompts the user how many numbers to be guessed, and gives a person three attempts per each
number (between 0-9). If the user can guess all the numbers, else if they arent they are told to try again. Regardless,
the results are saved to a file, pyGuesserResults.txt, that shows what each number was and if the person who attempted
to guess them did so successfully or not.## guesservar.py
These are variables used in the pyguesser.py file, and are mainly functions that are used within. Cannot be used alone, and
must be used with main file.