Pretty Poem in Python

`python

def rhyme():
return "In the world of code, where errors reside,\nI seek the logic, a coder's guide."

def stanza():
return (
"Indentation aligns, like verses in rhyme,\n"
"Syntax and semantics, a dance through time."
)

def refrain():
return "Python, my language, in loops and in line,"

def decorative_line():
return "*" * 40 # ASCII art line for decoration

def pretty_poem():
return (
decorative_line() + "\n" +
refrain() + "\n" +
decorative_line() + "\n" +
stanza() + "\n" +
decorative_line() + "\n" +
refrain() + "\n" +
decorative_line() + "\n" +
stanza() + "\n" +
decorative_line() + "\n" +
rhyme() + "\n" +
decorative_line()
)
print(pretty_poem())
`