This project presents the development of a Password Generator
utilizing Python, designed to create robust passwords based on
user-specific inputs. The methodology employed in this project
involves three key components:
-> Extracting the first three characters from the longest word in the user's
full name.
->Randomly selecting a special character from a predefined set (@, #, !, $,
%) to enhance password complexity.
_>Deriving a four-digit numerical component from the user's date of birth
by extracting the two-digit month and the last two digits of the birth year.
The project demonstrates Python programming concepts such
as string manipulation, random selection, and user input
handling. The implementation ensures simplicity while
providing an effective way to generate passwords for enhanced
security.