Python is actually compiled to a byte code and then interpreted. If you want to hide your source file, you can send these byte code files (extension .pyc) along with a version of Python called movable Python that does not have to be installed.
An alternate solution is a program called Py2Exe that binds everything needed, including the interpreter, into an executable file.
Python is a high level, very modular object oriented language. The syntax reads like prototyping. The interpreter is much more interactive than the endless compile and link routine of the traditional languages. This makes development of a program along with the required experimentation/testing easier.
Python's modules are imported as you need them. The ones that come with the language are highly optimized and many modules are written in C++.
You have quite a choice of modules for GUI development. Tkinter comes with the normal distribution of Python. It is very easy to learn and you can use it for simple stuff. Two of the other choices are wxPython and pyGTK. All of those are portable between Windows, Linux/Unix and the Mac OS-X.
vegaseat
DaniWeb's Hypocrite
5,976 posts since Oct 2004
Reputation Points: 1,345
Solved Threads: 1,416