PYTHON PASSWORD GENERATOR
IT Idiots networktricks

It is an apparatus that produces passwords dependent on the given
rules that you set to make an unusual solid secret key for your records.
The Password generator apparatus makes an irregular and tweaked secret
phrase for clients that causes them to make a solid secret word which gives
more noteworthy security.
Try to study to this python program . Start to study simple python programs
this python password generator is easy to undersood and these using key words
Beginner's of program's listen this python has many key words so don't try
to study all key word at the same time . Your's best way studing a programing
time search there used key words then you can easy to learn to key word's of python
key words
import random : The random module, which contains a variety of things to do with random number generation
join() : key words returns a joining all elements of an iterable, separated by a string separator
Program codingimport random
lower = "abcdefghijklmnopqrstuvwxyz"
upper = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
numbers ="0123456789"
symbols ="(){}!@#$%^&"
all = lower+upper+numbers+symbols
length = 8
password = "".join(random.sample(all,length))
print(password)
Then please don't try to copy and paste the program line's try to write the program.
Then thanks to visiting our webstie " itidiotsofficial.blogspot.com "
1 Comments
Thank you
ReplyDelete