“Как изменить текст в холсте” Ответ

текст tkinter в холсте

self.canvas = Canvas(root, width=800, height=650, bg = '#afeeee')
self.canvas.create_text(100,10,fill="darkblue",font="Times 20 italic bold",
                        text="Click the bubbles that are multiples of two.")
MrStonkus

Как изменить текст в холсте

#here im giving you an example of how you can change canvas text, u have to use itemconfig 

self.canvas = Canvas(root, width=800, height=650, bg = '#afeeee')
mytext = self.canvas.create_text(100,10,fill="darkblue",font="Times 20 italic bold",text="Click the bubbles that are multiples of two.")
#here ill edit the text

time.sleep(1)

self.canvas.itemconfig(mytext, text="text has changed!")

#this is an edit because for accident i typed some text wrong, this is fix
Average Anteater

Как изменить текст в холсте

#here im giving you an example of how you can change canvas text, u have to use itemconfig :)

self.canvas = Canvas(root, width=800, height=650, bg = '#afeeee')
mytext = self.canvas.create_text(100,10,fill="darkblue",font="Times 20 italic bold",text="Click the bubbles that are multiples of two.")
#here ill edit the text.

time.sleep(1)

self.canvas.itemcongig(mytext, text="text has changed!")
Average Anteater

Ответы похожие на “Как изменить текст в холсте”

Вопросы похожие на “Как изменить текст в холсте”

Больше похожих ответов на “Как изменить текст в холсте” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования