Advertisement
chaosagent

Weebify

Oct 22nd, 2015
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. while True:
  2.     inp = raw_input().strip().upper()
  3.     for c in 'aeiou':
  4.         inp = inp.replace(c.upper(), c)
  5.     print inp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement