Skip to content

Commit 6a95bf8

Browse files
authored
Update README.md
changed script names to bold
1 parent e9e317f commit 6a95bf8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,40 +6,40 @@ As the repository grows, I'll keep an updated overview of the projects here
66

77
## Utility scripts - Personal scripts that are used to help the main projects
88

9-
validation
9+
**validation**
1010
- module containing validation functions to be used in other scripts
1111
* contains function to check if user input matches character in tuple
1212
+ contains function to verify input is a valid integer value
1313

14-
utility
14+
**utility**
1515
- module containing variety of functions to be used in other scripts
1616
* contains function to clear the output screen
1717

1818
## Assorted Python Projects - My code for assorted python projects
1919

20-
dice_roller
20+
**dice_roller**
2121
- application for rolling a die (random int from 1-6)
2222
* asks the user for how many times they want to roll
2323
+ continues to prompt until exited by user
2424
+ utilizes validation module to verify input from user
2525
+ prints the number of rolls and how many times each number came up for the session
2626

27-
number_guessing
27+
**number_guessing**
2828
- application for guessing a number between a chosen range or a default range
2929
* asks the user if they want to enter the low/high values or use default
3030
+ utilizes validation module to verify input from user
3131
+ limits the number of chances a player gets to guess the number
3232
+ stores game history and prints number of games played and fewest guesses
3333

34-
rock_paper_scissors
34+
**rock_paper_scissors**
3535
- application for playing the rock,paper,scissors game
3636
* can play against the computer with random move selection or with two people and having it prompt for each turn
3737
+ each game winner is determined by best of 3 rounds, it records the winner for reporting at the end
3838
+ game will repeat until user chooses not to, at the end will report how many times each player won a game
3939
+ utilizes validation module to verify input from user
4040
+ utilizes utility module to clear output during the game
4141

42-
todo_list
42+
**todo_list**
4343
- application for a basic todo list
4444
* Application presents a menu where user and show current tasks, add a new task or complete a task
4545
+ User can add name of the task as well as a deadline, program will check if task already exists

0 commit comments

Comments
 (0)