Skip to content

Commit 387fdef

Browse files
password generator (#33)
* A password generator is made
1 parent c47ff53 commit 387fdef

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

strongpasswordgenerator.py

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#strong and nearly uncrackable password generator
2+
a= input ("enter first name with first letter as capital")
3+
b= input ("enter date of birth as DDMMYYYY")
4+
password= print(a[0:2]+"@"+b)
5+
# concatenation is used
6+
print("password is ", password)

0 commit comments

Comments
 (0)