# NaPoWriMo+GenMo2026_SymbolicWOrds2

# **SymbolicStanzas2**

For my 12th Poem of  **NaPoWriMo/ NaPoGenMo 2026** coded in ***Python*** *and then remixed* *,* ***Symbolic Stanzas***2 explores how we may read through symbols and their alternative forms.

## Poem

```ruby
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**

![](https://cdn.hashnode.com/uploads/covers/61d25a2b0413645f5c7beb00/56b1ac9e-98d5-4350-81ff-ddfd23b4bb44.png align="center")

![](https://cdn.hashnode.com/uploads/covers/61d25a2b0413645f5c7beb00/53124fd1-c87f-4ab0-aa17-a2cc98004adf.png align="center")

![](https://cdn.hashnode.com/uploads/covers/61d25a2b0413645f5c7beb00/766932b2-f7b4-497e-a128-aa032b01e9d1.png align="center")

![](https://cdn.hashnode.com/uploads/covers/61d25a2b0413645f5c7beb00/43ee763b-0a14-4f2b-bc15-56c901af401c.png align="center")

![](https://cdn.hashnode.com/uploads/covers/61d25a2b0413645f5c7beb00/b073d24c-0384-43aa-89df-6bc34c256475.png align="center")

![](https://cdn.hashnode.com/uploads/covers/61d25a2b0413645f5c7beb00/28590173-eaef-48c9-9459-efb57c4015b3.png align="center")

![](https://cdn.hashnode.com/uploads/covers/61d25a2b0413645f5c7beb00/15d43c11-35bf-49f0-9dae-cb8ea65eea92.png align="center")

![](https://cdn.hashnode.com/uploads/covers/61d25a2b0413645f5c7beb00/6716163b-20e5-42bd-8155-8b894cbe8c2e.png align="center")

## **Python Code**

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