The Lego set of Lolgaxe's dreams.
edit:More
Edited, Oct 23rd 2012 2:12pm by Aethien







def make_ing_form(x):
const = ('b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z')
vowels = ('a', 'e', 'i', 'o', 'u')
for y in x:
if x.endswith('ie'):
l = list(x)
del l[-1]
del l[-1]
l.append('ying')
z = ''
z = ''.join(l)
elif x.endswith('e'):
ex = ('be', 'see', 'flee', 'knee')
if x in ex:
z = x + 'ing'
else:
l = list(x)
del l[-1]
l.append('ing')
z = ''
z = ''.join(l)
elif x[-1] in const and x[-2] in vowels and x[-3] in const:
z = x + x[-1] + 'ing'
else:
z = x + 'ing'
print z


