-
Content count
1,881 -
Joined
-
Last visited
-
Days Won
13
Single Status Update
-
thinking of changing the vowels in my name
dont really like the way dannex sounds in my head anymore
and people always just shorten it to dan and i dislike that
possible options:
dannax
dennax
dinnax
donnax
dunnax
dynnaxdennex
dinnex
donnex
dunnex
dynnexdannix
dennix
dinnix
donnix
dunnix
dynnixdannox
dennox
dinnox
donnox
dunnox
dynnoxdannux
dennux
dinnux
donnux
dunnux
dynnuxdannyx
dennyx
dinnyx
donnyx
dunnyx
dynnyxi dislike anything with vowel #1 as ‘A’ since then we have the same problem of people shortening it to dan
and i dislike the way the second vowel looks as a ‘Y’, so those bottom 6 are out too.
i kinda like the first vowel as a ‘Y’, but that is definitely the most radically different from what it currently is
idk
- Show previous comments 8 more
-
-
uhh
import random vowels = ['a','e','i','o','u','y'] print('d',end = '') print(random.choice(vowels), end = '') for i in range(random.randint(1,28)): print('n', end = '') print(random.choice(vowels), end = '') print('x')
or maybe
import random def internet_username(): vowels = ['a','e','i','o','u','y'] danex_variation = 'd' danex_variation += random.choice(vowels) for i in range(random.randint(1,28)): danex_variation += 'n' danex_variation += random.choice(vowels) danex_variation += 'x' return danex_variation print(internet_username())
that second one is cleaner i think.
-