Shaun. said:
Thanks for the tip on how I should learn how to program. I just have a few questions that will probaly seem really nooby. Well I've been looking at tutorials on how to make simple programs and whenever they run a program, its always on a text line and what I want to know is how to make it graphical. Also once you've created a program, how do you make it run without the Python program or make it run on other operating systems. Thank you in advance
Python by itself is not graphical. If you want to do something graphical do some of the PyGame tutorials.
You can use
PY2EXE to "freeze" python scripts on Windows into EXE's, but on other systems, python is almost always built in, and doesn't need to be converted to be able to run without installing the Python core. Just give people your .py files and any resources it needs and it should just run. If you really want to freeze a Python script on Linux,
here's how.