Guest User

Untitled

a guest
May 21st, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. from sys import stdin, stdout
  4. msg = stdin.read()
  5. msg = msg.replace('!','nya!')
  6. msg = msg.replace('~','tu~tu-ru!')
  7. msg = msg.replace('.',' ~desu.')
  8. stdout.write(msg)
Add Comment
Please, Sign In to add comment