diff --git a/Projects/Password_Validator/Password_Validator.py b/Projects/Password_Validator/Password_Validator.py index be2128b..e9ba3e3 100644 --- a/Projects/Password_Validator/Password_Validator.py +++ b/Projects/Password_Validator/Password_Validator.py @@ -1,4 +1,6 @@ import re +#re is a built in module in python that provides support of regular expressions +#regular expressions are used to chcek the rpesence of a certain pattern in a string. # function to check whether the password is valid or not. def validator(password): diff --git a/Projects/ROCK PAPER SCISSORS/RockPaperScissors.py b/Projects/ROCK PAPER SCISSORS/RockPaperScissors.py index 2f60cc1..93c1768 100644 --- a/Projects/ROCK PAPER SCISSORS/RockPaperScissors.py +++ b/Projects/ROCK PAPER SCISSORS/RockPaperScissors.py @@ -8,8 +8,11 @@ #INPUT; games=int(input("\nEnter the number of games you want to play: ")) +game_counter=0 -while(comp_count+user_count