Assign it to a variable
answer = canvas.create_text(400, 263, text='word', font=('Ariel', 60, 'bold'))
Either in the function or elsewhere where you’ll be updating the text, use the .itemconfig
canvas.itemconfig(answer, text=new_word_french)
Have any questions or comments? Write them below!