Skip to main content

Command Palette

Search for a command to run...

NaPoWriMo+GenMo2026_SymbolicWOrds2

Meaning out of More Symbols?

Published
1 min read
NaPoWriMo+GenMo2026_SymbolicWOrds2

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

NaPoGenMo X NaPoWriMo 2026

Part 3 of 14

More Poetic Journeys for the 2026 Edition of NaPoGenMo/NaPoWriMo

Up next

NaPoWriMo+GenMo2026_SymbolicWOrds

Meaning out of Symbols?