![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.python archiveinteractive programme (add a new line in Tk)
From: nigel <cm012b5105@blueyonder.co.uk>
Date: Mon Mar 27 2006 - 00:47:35 CEST
somebody recently showed me how to create a new line using \n which was
from Tkinter import *
root = Tk()
w = Label(root, text="\n Hello, world! \n iv arrived")
root.mainloop()
Thanks nige
|