This commit is contained in:
Joe S 2021-01-31 18:24:37 -05:00
parent 6bcb5be1ec
commit 9863e910f6
1 changed files with 15 additions and 0 deletions

15
4/4.15 LAB/main.py Normal file
View File

@ -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)