Skip to main content

Command Palette

Search for a command to run...

NaPoWriMo+GenMo2026_SymbolicWOrds

Meaning out of Symbols?

Published
1 min read
NaPoWriMo+GenMo2026_SymbolicWOrds

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()

NaPoGenMo X NaPoWriMo 2026

Part 1 of 11

More Poetic Journeys for the 2026 Edition of NaPoGenMo/NaPoWriMo

Up next

NaPoWriMo+GenMo2026_Incremental

4-5-6-7 Stanzas of Spheres