PythonReport
PythonReport
MICRO-PROJECT REPORT
On
Microproject Report
UNDER THE GUIDANCE OF
Prof. Dhobale M. R.
CERTIFICATE
This is to certify that the Micro-project
“Random Password genrator”
Has been completed by
1.Adaki Lokesh 2208540084
2.Nagul Vedant 2208540090
3.Sadul Shrihari 2208540102
4.Sandupatla Pavan 2208540193
5.UdayKumar Jadhav 2108540271
Of
T.Y. (Computer Engineering) Institute Code - 0854
Has been submitted in partial fulfilment
Password length: Users can specify how long they want their password to be,
which can help meet different security requirements.
Character types: Users can choose to include uppercase letters, numbers, and
special characters in the password, which significantly enhances its complexity
and strength.
Randomness: By using a combination of letters, numbers, and special
characters, the generator creates passwords that are highly unpredictable,
making them resistant to brute force attacks and common guessing techniques.
1
PROGRAM
import random
import string
return password
def main():
print("Welcome to the Random Password Generator!")
2
print(f"Your randomly generated password is: {password}")
3
OUTPUT
4
CONCLUSION
In this report, we will explore the features, functionality, and the implementation
of the Random Password Generator program written in Python. We will also
discuss its benefits, use cases, and potential improvements, making it a valuable
tool for both individuals and organizations looking to enhance their digital
security practices.