On Sat, Dec 20, 2008 at 3:18 AM, manish sharma <[email protected]> wrote: > sir, how can complilng a python file in ubuntu 8.10
Python is a scripting language, so it's interpreted. To run a Python script, use the Python interpreter: $> python pyscript.py Sometimes you'll find a .pyc file, which is a precompiled Python bytecode file. It's bytecode, so it requires the Python interpreter, but it obfuscates the original source code, bypassing the parsing and compiling phase (leaving the linking phase, and, of course, execution). Try $> man python To learn more about what you can do with the Python interpreter. -- Registered Linux Addict #431495 http://profile.xfire.com/mrstalinman | John 3:16! http://www.fsdev.net/ | http://lordsauron.wordpress.com/ Parents, Take Responsibility For Your Kids! http://www.whattheyplay.com/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Linux Users Group. To post a message, send email to [email protected] To unsubscribe, send email to [email protected] For more options, visit our group at http://groups.google.com/group/linuxusersgroup -~----------~----~----~----~------~----~------~--~---
