NaPoWriMo+GenMo2026_SymbolicWOrds3
What can this Mean?
Published
•1 min read
SymbolicStanzas3
For my 22nd Poem of NaPoWriMo/ NaPoGenMo 2026 coded in Python and then remixed , SymbolicStanzas3 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
Code
Python
import random
def colorgrid(amt):
x = "/\|-_!"
joined = random.choices(x, k=amt)
final = ''.join(joined)
print(final)
colorgrid(5)
colorgrid(7)
colorgrid(12)
colorgrid(12)
colorgrid(7)
colorgrid(5)
colorgrid(9)
colorgrid(5)
colorgrid(7)
colorgrid(12)
colorgrid(12)
colorgrid(7)
colorgrid(5)
colorgrid(9)



