UncleBobs
Member
Offline
Activity: 103
Merit: 10
It From Bit
|
|
September 29, 2013, 12:18:01 PM Last edit: September 29, 2013, 10:24:27 PM by UncleBobs |
|
# Send in the clones, from the otiose to the oneiric... # python RipCloneNameGen.py
a1 = ['b','bl','br','c','ch','cl','cr','d','dr','f','fl','fr','g','gh','gl'] a2 = ['gn','gr','h','j','k','kl','kr','l','m','n','p','ph','pl','pr','q'] a3 = ['r','rh','s','sh','sk','sl','sm','sn','sp','sq','st','sw'] a4 = ['t','th','tr','tw','v','w','wh','wr','x','y','z'] a = a1 + a2 + a3 + a4
b1 = ['a','ae','ai','ao','au','e','ea','ee','ei','eo','eu','i','ia','ie'] b2 = ['io','iu','o','oa','oe','oi','oo','ou','u','ua','ue','ui','uo'] b = b1 + b2
c = ['bb','ck','dd','ff','gg','pp','ss','st','tt','zz']
d = ['le']
n = 0 for i in a: for j in b: for k in c: n += 1 print n, i + j + k + d[0]
|