Fonte da imagem:https://www.101x.com/101x/chillville-playlist-october-8-2023/

from datetime import date

today = date.today()

title = “Chillville Playlist – 8 de outubro de 2023”
subtitle = “Confira as músicas que embalaram a programação de Chillville no último domingo.”
source = “Fonte: 101X”

news = (
“No último domingo, dia {} de outubro de 2023, a programação de Chillville ”
“cativou os ouvintes com uma seleção diversificada de músicas relaxantes e atmosféricas. ”
“Confira abaixo as faixas que fizeram parte do playlist de sucesso:\n\n”.format(today.day)
)

news += “1. Nirvana – Smells Like Teen Spirit\n”
news += “2. Radiohead – Creep\n”
news += “3. Bon Iver – Skinny Love\n”
news += “4. Coldplay – The Scientist\n”
news += “5. Lana Del Rey – Summertime Sadness\n”
news += “6. Arctic Monkeys – Do I Wanna Know?\n”
news += “7. The xx – Intro\n”
news += “8. Alt-J – Breezeblocks\n”
news += “9. Tame Impala – Feels Like We Only Go Backwards\n”
news += “10. Florence + The Machine – Dog Days Are Over\n”
news += “11. The Smiths – There Is A Light That Never Goes Out\n”
news += “12. M83 – Midnight City\n”

news += “\nNão perca as próximas edições do programa Chillville, todos os domingos, às 20h. ”
news += “Relaxe e aproveite a melhor seleção musical dos gêneros indie, dream pop e chillwave.”

news += “\n\n{}\n”.format(source)

print(title)
print(“”)
print(subtitle)
print(“”)
print(news)