Размер видео: 1280 X 720853 X 480640 X 360
Показать панель управления
Автовоспроизведение
Автоповтор
Thank you sir for this course. Completed today's tutorial.
Is there a way to change the commas to dashes in the legend? Thank you.
Yes. legend = ax.get_legend()for text in legend.texts: text.set_text(text.get_text().replace(',', '-')) # Replace comma
legend = ax.get_legend()for text in legend.get_texts(): text.set_text(text.get_text().replace(',', '- '))
Thank you sir for this course. Completed today's tutorial.
Is there a way to change the commas to dashes in the legend? Thank you.
Yes.
legend = ax.get_legend()
for text in legend.texts:
text.set_text(text.get_text().replace(',', '-')) # Replace comma
legend = ax.get_legend()
for text in legend.get_texts():
text.set_text(text.get_text().replace(',', '- '))