|
|
@@ -1,12 +1,12 @@ |
|
|
|
import random as r |
|
|
|
import sys |
|
|
|
|
|
|
|
beg = ["a","e","i","o","u","ba","be","bi","bo","bu","by","y","da","de","di","do","du","dy","fa","fi","fo","fe","fu","ga","ge","gi","go","gu","ka","ke","ki","ko","ku","ky","ma","me","mi","mo","mu","na","ne","ni","no","nu","pa","pe","pi","po","pu","ra","re","ri","ro","ru","ry","sa","se","si","so","su","ta","te","ti","to","tu","ty","za","ze","zi","zo","zu","zy"] |
|
|
|
mid = beg + ["l","x","n"] |
|
|
|
beg = ["a","e","i","o","u","ba","be","bi","bo","bu","by","y","da","de","di","do","du","dy","fa","fi","fo","fe","fu","ga","ge","gi","go","gu","ka","ke","ki","ko","ku","ky","ma","me","mi","mo","mu","na","ne","ni","no","nu","pa","pe","pi","po","pu","ra","re","ri","ro","ru","ry","sa","se","si","so","su","ta","te","ti","to","tu","ty","wa","we","wi","wo","wy","za","ze","zi","zo","zu","zy"] |
|
|
|
mid = beg + ["l","x","n","r"] |
|
|
|
|
|
|
|
def gen_name(n=None): |
|
|
|
if n == None: |
|
|
|
lgt = r.randint(3,10) |
|
|
|
lgt = r.randint(3,9) |
|
|
|
else: |
|
|
|
lgt = n |
|
|
|
nm = "" |