Acrostic Poetry Decryption in Python

# Introduction In this project, you will learn how to decipher the hidden message in an acrostic poem. Acrostic poems are a type of poetry where the first letters of each line spell out a word or phrase. Your task is to write a Python function that can extract the first words of each line and concatenate them to reveal the hidden message. ## 👀 Preview ```zsh # Example $ python3 acrostic_poetry.py RainItItAnd ``` ## 🎯 Tasks In this project, you will learn: - How to understand the problem statement and requirements for the Acrostic Poetry Decryption project - How to implement the `acrostic_poetry_decryption(poem)` function to decrypt the message in the acrostic poem - How to test the decryption function with an example input ## 🏆 Achievements After completing this project, you will be able to: - Understand and solve problems involving text manipulation and pattern extraction - Write a Python function that can decipher hidden messages in acrostic poems - Test and debug your code to ensure it works correctly

|60 : 00

Click the virtual machine below to start practicing