I've been working on Tkinter, and setting a message box. It worked fine, but I didn't really like the fact that the text displayed was in a small position in the window. Take a look at this code and you'll know what I mean.
def About(self):
text = Message(self, text=''' .:: About Python ::.
Blah blah blah blah.''')
text.grid(column=1, row = 5 and 4)
text.pack()
I don't know how to make the text 'spread out' over the entire screen. Take a look at this photo to understand it.
And I'll be glad if someone could help me find a way of making it print once, not multiple times.
http://imgur.com/rgAxH -- Image