Advertisement
biswasrohit20

pass

Mar 29th, 2021
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. password = input("Please enter the simple password: ")
  2. output = ""
  3. for c in password:
  4. if c == "m":
  5. c = "M"
  6. elif c == "i":
  7. c = "!"
  8. elif c == "a":
  9. c = "@"
  10. elif c == "B":
  11. c = "8"
  12. elif c == "o":
  13. c = "."
  14. output += c
  15. output += "q*s"
  16. print(output)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement