Hi,

I (think I have :-)) installed Python on my Pocket PC (obtained from
http://fore.validus.com/~kashtan/).

There were Tkinter binaries with it so I installed those as well. When I
attempt to run the most simplistic of python programs using Tkinter, I get
an error message stating that Python can't find any tkinter module.

Any ideas what I have done wrong anybody?

Thanks
Peter

import Tkinter

if __name__ == '__main__':
  root = Tkinter.Tk()

  root.title('Hello World?')

  root.mainloop()


-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to