| python Programming Glossary: distinctionClass method differences in Python: bound, unbound and static http://stackoverflow.com/questions/114214/class-method-differences-in-python-bound-unbound-and-static    share improve this question   In Python there is a distinction between bound and unbound methods. Basically a call to a member.. 
 Python Vs. Ruby for Metaprogramming [closed] http://stackoverflow.com/questions/144661/python-vs-ruby-for-metaprogramming  methods functions etc. at runtime. Preferably minimal distinction between code and data Lisp style. Nice clean sane syntax and.. 
 Modifying locals in Python http://stackoverflow.com/questions/1450275/modifying-locals-in-python  is a function in Python 3.x the compiler cannot make this distinction since the user could have done something like exec 123 . http.. 
 How do you get a directory listing sorted by creation date in python? http://stackoverflow.com/questions/168409/how-do-you-get-a-directory-listing-sorted-by-creation-date-in-python  most conforming to the question requirements. It makes a distinction between creation and modification dates at least on Windows.. 
 python: list vs tuple, when to use each? http://stackoverflow.com/questions/1708510/python-list-vs-tuple-when-to-use-each 
 Why program functionally in Python? http://stackoverflow.com/questions/1892324/why-program-functionally-in-python  OOP and procedural fans dislike Python's reasonably strong distinction between expressions and statements part of a general stance.. 
 What is the best project structure for a Python application? http://stackoverflow.com/questions/193161/what-is-the-best-project-structure-for-a-python-application  is whether or not to use a src tree. Python doesn't have a distinction between src lib and bin like Java or C has. Since a top level.. 
 Does python support multiprocessor/multicore programming? http://stackoverflow.com/questions/203912/does-python-support-multiprocessor-multicore-programming  such thing as multiprocessor or multicore programming. The distinction between multiprocessor and multicore computers is probably not.. 
 Python: Difference between class and instance attributes http://stackoverflow.com/questions/207000/python-difference-between-class-and-instance-attributes  class and instance attributes  Is there any meaningful distinction between class A object foo 5 # some default value vs. class.. 
 What are the biggest differences between Python and Ruby from a philosophical perspective [closed] http://stackoverflow.com/questions/234721/what-are-the-biggest-differences-between-python-and-ruby-from-a-philosophical-pe  Python is modeled after the Fortran line there is a clear distinction between expressions and statements and between code and data... 
 How do I call setattr() on the current module? http://stackoverflow.com/questions/2933470/how-do-i-call-setattr-on-the-current-module 
 If Python is interpreted, what are .pyc files? http://stackoverflow.com/questions/2998215/if-python-is-interpreted-what-are-pyc-files  language as opposed to a compiled one though the distinction can be blurry because of the presence of the bytecode compiler... 
 Difference between __getattr__ vs __getattribute__ in Python? http://stackoverflow.com/questions/3278077/difference-between-getattr-vs-getattribute-in-python  those in Python 2.x with no explicit base class. But the distinction between old style and new style classes is not the important.. 
 Difference between abstract class and interface in Python http://stackoverflow.com/questions/372042/difference-between-abstract-class-and-interface-in-python  doesn't need a formal Interface contract the Java style distinction between abstraction and interface doesn't exist. If someone.. 
 Why aren't Python's superclass __init__ methods automatically invoked? http://stackoverflow.com/questions/3782827/why-arent-pythons-superclass-init-methods-automatically-invoked  superclass   share improve this question   The crucial distinction between Python's __init__ and those other languages constructors.. 
 UnicodeDecodeError when redirecting to file http://stackoverflow.com/questions/4545661/unicodedecodeerror-when-redirecting-to-file  1 string of characters and 2 string array of bytes . This distinction has been mostly ignored for a long time because of the historic.. 
 Python (and Python C API): __new__ versus __init__ http://stackoverflow.com/questions/4859129/python-and-python-c-api-new-versus-init  objects let me be clear I get that. In fact that distinction is quite natural to me since I have experience in C where we.. methods being easier to write and the mutable vs immutable distinction noted above the separation can also be exploited to make calling.. 
 What's the difference between list and tuples in Python? http://stackoverflow.com/questions/626759/whats-the-difference-between-list-and-tuples-in-python  Apart from tuples being immutable there is also a semantic distinction that should guide their usage. Tuples are heterogeneous data.. Tuples have structure lists have order. Using this distinction makes code more explicit and understandable. One example would.. 
 |