# NaPoWriMo+GenMo2025_NumericPoems

# **Numbers&Symbols2**

For the 23rd Poem of **NaPoWriMo/NaPoGenMo** 2025, A Number & Symbol based poem will be written. What meaning do you derive from the phrases created?

Coded In **Python**

## Numerical Poems

```ocaml
1(>2>2< 1+?50 1?3< { 1<2>5?1+<
3^>7:8+?5+?6%> 0>10 1:0<1-:2: 1>{
4-{ 2>6>1: 47 ??:1(>"
<3{ 47 5?1} 34 2<
> 47 1>9"1>9" 3<4$?:: ""
```

```ocaml
1?4"> " 1*? 4: }4>3?1<
4>4<1" ?5>>> <1>?4<2>1<2" 2>1<}
> < 10 4:5+}2>2"
: 37 21<> 16 }2(1-"3<3+<>
1<1? 25 3<3< >2< 2<{2<{
```

## Images

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1745879176634/3c6fb935-83b4-47fb-84e8-29a7b21c3312.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1745879191469/1c41f767-1913-4c74-ac0f-1b2c74a90804.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1745879181361/91e5ea55-8f55-406d-832a-fc7215bba826.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1745879185054/aa8941df-1129-46fd-a8ad-303f830b0236.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1745879196986/4a7332d4-1f10-4e3d-9a27-e3d313b62151.png align="center")

## Python Code

```python
import random

with open("Randomnumber.txt", "r") as adj:  #open and read the text file
    IWT = adj.read()  #give the file a variable name 
    IWTUsed = list(map(str,IWT.split())) #individuals words

def spell_2():
    print(random.choice(IWTUsed).upper() + " " +  random.choice(IWTUsed) + " " +  random.choice(IWTUsed) +  " " +  random.choice(IWTUsed) +  " " + random.choice(IWTUsed).upper())
    print(random.choice(IWTUsed).upper() + " " +  random.choice(IWTUsed) + " " +  random.choice(IWTUsed) + random.choice(IWTUsed) +  " " + random.choice(IWTUsed).upper())
    print(random.choice(IWTUsed).upper() + " " +  random.choice(IWTUsed) + " " +  str(random.randint(1, 47)) + " " + random.choice(IWTUsed) + random.choice(IWTUsed).upper())
    print(random.choice(IWTUsed).upper() + " " +  str(random.randint(1, 47)) + " " +  random.choice(IWTUsed) +  " " +  str(random.randint(1, 47)) +  " " + random.choice(IWTUsed).upper())
    print(random.choice(IWTUsed).upper() + " " +  str(random.randint(1, 47)) + " " +  random.choice(IWTUsed)*2 +  " " +  random.choice(IWTUsed) +  " " + random.choice(IWTUsed).upper()*2)
```
