Tutorial - py2exe.org - 0 views
The Eric Python IDE - 0 views
-
Eric is a full featured Python and Ruby editor and IDE, written in python. It is based on the cross platform Qt gui toolkit, integrating the highly flexible Scintilla editor control. It is designed to be usable as everdays' quick and dirty editor as well as being usable as a professional project management tool integrating many advanced features Python offers the professional coder. Current stable version is eric4 based on Qt4. For Qt3 based systems eric3 is still available.
Python threads - a first example - 0 views
-
Python threads - a first example If you have a process that you want to do several things at the same time, threads may be the answer for you. They let you set up a series of processes (or sub-processes) each of which can be run independently, but which can be brought back together later and/or co-ordinated as they run
Debugging in Python - 0 views
-
So here is my own personal gentle introduction to using pdb. It assumes that you are not using any IDE -- that you're coding Python with a text editor and running your Python programs from the command line.
Home simPy python - 1 views
Open Source Software in Python - 2 views
Orange -- data mining and GUI toolkit - 0 views
Learning to program - 1 views
SAGE: Open Source Mathematics Software - 0 views
-
General and Advanced Pure and Applied Mathematics Use SAGE for studying a huge range of mathematics, including algebra, calculus, elementary to very advanced number theory, cryptography, numerical computation, commutative algebra, group theory, combinatorics, graph theory, and exact linear algebra.
(An unofficial) Python Tutorial Zone - 0 views
Python Idioms and Efficiency Suggestions - 0 views
-
What idioms should I use to make my code easier to read? Read "The Python Cookbook", especially the first few chapters. It's a great source of well-written Python code examples.
-
Use function factories to create utility functions. Often, especially if you're using map and filter a lot, you need utility functions that convert other functions or methods to taking a single parameter. In particular, you often want to bind some data to the function once, and then apply it repeatedly to different objects. In the above example, we needed a function that multiplied a particular field of an object by 3, but what we really want is a factory that's able to return for any field name and amount a multiplier function in that family:
-
Use zip and dict to map fields to names. zip turns a pair of sequences into a list of tuples containing the first, second, etc. values from each sequence. For example, zip('abc', [1,2,3]) == [('a',1),('b',2),('c',3)]. You can use this to save a lot of typing when you have fields in a known order that you want to map to names:
Boost Graph Library - Python Bindings - 0 views
Python For Delphi integration - 0 views
SciPy Course Outline - 0 views
sympy - Google Code - 0 views
How to Write a Spelling Corrector - 0 views
Charming Python, a column by David Mertz - 0 views
« First
‹ Previous
381 - 400 of 540
Next ›
Last »
Showing 20▼ items per page