Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- password = input("Please enter the simple password: ")
- output = ""
- for c in password:
- if c == "m":
- c = "M"
- elif c == "i":
- c = "!"
- elif c == "a":
- c = "@"
- elif c == "B":
- c = "8"
- elif c == "o":
- c = "."
- output += c
- output += "q*s"
- print(output)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement