Add 4.15
This commit is contained in:
parent
6bcb5be1ec
commit
9863e910f6
|
@ -0,0 +1,15 @@
|
||||||
|
password = input()
|
||||||
|
|
||||||
|
replacements = {
|
||||||
|
'i' : '!',
|
||||||
|
'a' : '@',
|
||||||
|
'm' : 'M',
|
||||||
|
'B' : '8',
|
||||||
|
'o' : '.'
|
||||||
|
}
|
||||||
|
|
||||||
|
for replace, replacement in replacements.items():
|
||||||
|
password = password.replace(replace, replacement)
|
||||||
|
password += 'q*s'
|
||||||
|
|
||||||
|
print(password)
|
Loading…
Reference in New Issue