Category:Python: Difference between revisions

m
Spelling/grammar/aesthetics
m (Grammar)
m (Spelling/grammar/aesthetics)
Line 1:
{{language|Python}}From the official [http://www.python.org Python] web-sitewebsite: "Python is a dynamic object-oriented programming language that can be used for many kinds of software development."
 
PythonIt is very readable and easy to create clean bug-free programs in Python due to the motto: "Errors should never pass silently." Python source files (.py files) are typically compiled to an intermediate bytecode language (.pyc files) and executed by a Python Virtual Machine.
Python source files (.py files) are typically compiled to an intermediate bytecode language (.pyc files) and executed by a Python Virtual Machine.
 
Note: because Python useuses whitespace for structure, do not format long code examples with leading whitespace, butinstead use <nowiki><pre></pre></nowiki> tags. This will make it easier to copy tested code into the wiki, and copying code out of the wiki. Example:
<pre>
print 'this line must not have leading indentation!'
Anonymous user