NaPoWriMo+GenMo2026_SymbolicWOrds2
Meaning out of More Symbols?
Published
•1 min read
SymbolicStanzas2
For my 12th Poem of NaPoWriMo/ NaPoGenMo 2026 coded in Python and then remixed , Symbolic Stanzas2 explores how we may read through symbols and their alternative forms.
Poem
What Occurs in your Mind
when you read these lines
Do words and feelings emerge?
Do thoughts and reason merge?
Unearth what has been submerged?
OutPut
Python Code
import random as rd
def symbolize2():
seq = ['*',' ','-',':',' ','*','|','*','*']
for i in range(6):
seqAudio = rd.choices(seq, k=24)
if i % 4 == 0:
seqAudio1 = ''.join(seqAudio[0:rd.randrange(4,7)]) #sublist
elif i % 3 == 0:
seqAudio1 = ''.join(seqAudio[0:rd.randrange(5,8)]) #sublist
else:
seqAudio1 = ''.join(seqAudio)
print(seqAudio1)
symbolize2()
print('')
symbolize2()
print('')
symbolize2()



