I hereby claim:
- I am teddy-error on github.
- I am du (https://keybase.io/du) on keybase.
- I have a public key whose fingerprint is 2BF6 D5D8 C51F 9CD8 D59A AD19 2BFC ED30 84EA 35C4
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| { | |
| "room": "Radiant Music", | |
| "author": "Origin", | |
| "icon": "https://cdn.radiant.dj/rcs/icons/radiant/logo.png", | |
| "css": "https://cdn.radiant.dj/rcs/rs_room.css", | |
| "rules": { | |
| "allowAutorespond": true, | |
| "allowAutowoot": true, | |
| "allowAutojoin": false, | |
| "allowAutograb": true, |
| original = raw_input('Enter a word:') | |
| if len(original) > 0 and original.isalpha(): | |
| word = original.lower() | |
| first = word[0] | |
| if first == 'a' or 'e' or 'i' or 'o' or 'u': | |
| new_word = word + 'ay' | |
| print new_word | |
| else: | |
| new_word = word[1:] + 'ay' |