NaPoWriMo+GenMo2026_SymbolicWOrds
Meaning out of Symbols?
Published
•1 min read
SymbolicStanzas
For my 11th Poem of NaPoWriMo/ NaPoGenMo 2026 coded in Python , Symbolic Stanzas explores how we may read through symbols and their alternative forms.
Poem Prior to Other
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()



