Python - Formatted Chat Client
I have made a chat server and client which uses basic socket connections to send messages to a server which then sends them to all connected users. This was all done using print in
Solution 1:
You should use the text widget. To insert text into the widget, use the insert
method:
The_widget.insert("end", "hello, world")
This is documented pretty much in all Tkinter documention. For example, see http://effbot.org/tkinterbook/text.htm#Tkinter.Text.insert-method
Post a Comment for "Python - Formatted Chat Client"