sid-am-ahd935 / Aliahns

This repository is under GDSC Aliah for their participants to get a good grasp of open source and how to work among others. In this repository there will be only beginner level contributions so as to get the participants started.
7 stars 25 forks source link

Python Password Generator Script #5

Closed haris-bit closed 2 years ago

haris-bit commented 2 years ago

Code is below:

import random

print('Welcome to Your Password Generator')

chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!@#$%^&*()_+0123456789'

number = input('Amount of Passwords to Generate: ') number = int(number)

length = input('Input your password length: ') length = int(length)

print('\nHere are your passwords:')

for pwd in range(number): password = '' for c in range(length): password += random.choice(chars) print(password)

sid-am-ahd935 commented 2 years ago

Don't write your code here. Remove this comment. Create a new issue with heading "Create a Password generator program using Python." And Read the guidelines given in the folder before submitting the pull request.

Also add your code in the respective folders.

sid-am-ahd935 commented 2 years ago

Don't write your code here. Remove this comment. Create a new issue with heading "Create a Password generator program using Python." And Read the guidelines given in the folder before submitting the pull request.

Also add your code in the respective folders.

@haris-bit

sid-am-ahd935 commented 2 years ago

@haris-bit Create a new issue for your code

haris-bit commented 2 years ago

ok, done. I sent a pull request to your repo. image