NaPoWriMo+GenMo2025_NumericPoems
Numbers & Poems
Updated
•2 min read
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
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$?:: ""
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





Python Code
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)




