# NaPoWriMo x NaPoGenMo 2024 - Day 2: Tanka Pt 2

# PythonIn5

For the second day of NaPoWriMo/NaPoGenMo 2024, There will be another Tanka written but this type the poem will be the actual python code

Tankas are poems that follow the following syllable count: 5,7,5,7,7

## Python Poem

```python
x = ['deep','sleep']            # x equals deep, sleep 
print(x[1] + x[0])              # print(x one plus x zero) 
y = 'hero'                      # y equals hero
z = y + x[1]                    # z equals y + x[1]  
print("This story is now done") #Print 'This Story is now Done'
```
