<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>

<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
</head>
<body text="#000000" bgcolor="#ffffff">
I have tried to follow the tutorial I found here:<br>
<br>
Python 2.7 Tutorial<br>
<a class="moz-txt-link-freetext" href="http://www.youtube.com/watch?v=uh6AdDX7K7U">http://www.youtube.com/watch?v=uh6AdDX7K7U</a><br>
<br>
This is what I have done so far:<br>
<font color="#3333ff"><br>
#!/usr/bin/python<br>
<br>
from Tkinter import *<br>
import Tkinter.MessageBox<br>
<br>
myapp = Tk()<br>
myapp.title("This is the gui title")<br>
myapp.geometry("500x500+600+600")<br>
myapp.mainloop()</font><br>
<br>
I run it like this:<br>
<font color="#000099"><br>
$ python tktest.py</font><br>
<br>
I am getting the error message:<br>
<br>
<font color="#333399">Traceback (most recent call last):<br>
&nbsp; File "tkwindow.py", line 12, in &lt;module&gt;<br>
&nbsp;&nbsp;&nbsp; import Tkinter.MessageBox<br>
ImportError: No module named</font> <font color="#cc0000">MessageBox</font><br>
<br>
And then after changing the uppercase to lowercase this:<br>
<br>
<font color="#330099">Traceback (most recent call last):<br>
&nbsp; File "tkwindow.py", line 12, in &lt;module&gt;<br>
&nbsp;&nbsp;&nbsp; import Tkinter.messagebox<br>
ImportError: No module named</font> <font color="#cc0000">messagebox</font><br>
<br>
<br>
How do I find the modules in Tkinter? <br>
<br>
I am running Python 2.6.6. It may be a little older and not have the
messagebox module.<br>
<br>
<br>
<br>
<br>
<br>
</body>
</html>