PYTHON3 TKINTER - TEXTBOX ADDING TEXT

preview_player
Показать описание
This video shows how to add text into the Text widget using tkinter in python 3.
Рекомендации по теме
Комментарии
Автор

Hey man, just wanted to say that this has to be the only tutorial I could find on this topic, so I wish to extend my greatest thanks!

signordoge
Автор

I spent the whole night trying to solve this.Then I found your video and I realized I had issue with widgets organization. I was using insert(tk.INSERT, ) with grid() for geometry Management, it didn’t work. Replaced it by pack() and it worked like a charm! Thank you for your time and explanation you are the best!

najdboujenah
Автор

Figuring out how to add text to a text widget took way too long. Thanks for the video!

luckless
Автор

Thank You so much I was finding this from long time and now I finally got it

tirthjayswal
Автор

Is there any way to fetch TEXT widget values by using variables???

jihanparvaj
Автор

insert(tk.insert, ) is there not a better way to do this?

fernandohood
Автор

Can we change the alignment of the text which is being inserted ?
Like “line 1” should be at left side
And “line 2” should be at right side

Knight-Walker