Exercise 6 · Chapter: PrintRequired+50 XP
Fix the Poem
This poem has two bugs. Find and fix them so it prints:
Roses are red Violets are blue Coding is fun And so are you
Need a hint?
3 available · costs 5 XP each
python
print("Roses are red")
"Violets are blue"
print("Coding is fun")
print('And so are you")
Output
Run your code to see the output here.