From 85d938de4ca27823cff9c5608b1d67aa441b0de5 Mon Sep 17 00:00:00 2001 From: Praneet <140910022+Pranee-2212@users.noreply.github.com> Date: Wed, 8 Oct 2025 15:23:11 +0530 Subject: [PATCH] some minor changes were made like adding a error handling block on sending email from csv file and some descriptiion and comment on the multiple file.. --- .../Password_Validator/Password_Validator.py | 2 ++ .../ROCK PAPER SCISSORS/RockPaperScissors.py | 7 +++++-- Projects/Reddit Scraper/reddit_scraper.py | 18 ++++++++++-------- Projects/send email from csv/Sending_mail.py | 13 ++++++++----- 4 files changed, 25 insertions(+), 15 deletions(-) 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