Compilador de Python Online (Editor / Interpretador)
Escreva, execute e compartilhe o seu código Python instantaneamente com o Compilador de Python Online da Asimov Academy.
import matplotlib.pyplot as plt
plt.plot([1, 2, 3], [100, 200, 300], marker='o', linestyle='-', color='green')
plt.title("Minhas Economias ao Longo do Ano")
plt.xlabel("Mês")
plt.ylabel("Economias em R$")
plt.grid(True)
plt.show()