We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c47ff53 commit 387fdefCopy full SHA for 387fdef
strongpasswordgenerator.py
@@ -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