Python
From Just Solve the File Format Problem
(Difference between revisions)
Dan Tobias (Talk | contribs) m |
Dan Tobias (Talk | contribs) (Add infobox) |
||
Line 8: | Line 8: | ||
|[[Python]] | |[[Python]] | ||
|} | |} | ||
+ | |||
+ | {{FormatInfo | ||
+ | |formattype=Languages | ||
+ | |subcat=Programming Languages | ||
+ | |extensions={{ext|py}}, {{ext|pyc}}, {{ext|pyo}}, {{ext|pyd}} | ||
+ | }} | ||
Python is a [[Programming Languages|programming language]]. It has a number of file endings associated with it, including .py, .pyc, .pyo, and .pyd | Python is a [[Programming Languages|programming language]]. It has a number of file endings associated with it, including .py, .pyc, .pyo, and .pyd |
Revision as of 01:39, 12 November 2012
File Formats | > | Languages | > | Programming Languages | > | Python |
Python is a programming language. It has a number of file endings associated with it, including .py, .pyc, .pyo, and .pyd
- .py
- A text file that contains python source code. It is often utf-8 encoded, but it does not have to be.
- .pyc
- Compiled bytecode of a python source file
- .pyo
- Optimized compiled bytecode
- .pyd
- A python version of a Windows .dll file
Python is often affiliated with reStructuredText documents. Python comments are often formatted with reStructuredText markup.