ShowMeDo - 0 views
MMM-Experts - 0 views
Python anti-pitfalls - 0 views
ASPN : Python Cookbook : Permutation and Combination Enumerator - 0 views
-
def comb(items, n=None): if n is None: n = len(items) for i in range(len(items)): v = items[i:i+1] if n == 1: yield v else: rest = items[i+1:] for c in comb(rest, n-1): yield v + c
-
def perm(items, n=None): if n is None: n = len(items) for i in range(len(items)): v = items[i:i+1] if n == 1: yield v else: rest = items[:i] + items[i+1:] for p in perm(rest, n-1): yield v + p
-
Permutation and Combination Enumerator
Pypar -- parallel programming - 0 views
-
Pypar does not require the Python interpreter to be modified or recompiled: Parallel python programs use the standard Python and need merely import the pypar module. This means for example that you can upgrade Python independently of your parallel codes.
-
Pypar is an efficient but easy-to-use module that allows programs/scripts written in the Python programming language to run in parallel on multiple processors and communicate using message passing. Pypar provides bindings to an important subset of the message passing interface standard MPI. Other Python MPI bindings available from other developers include: PyMPI, Scientific Python and pythonMPI.
Michael's Quick Guide to Pyrex - 0 views
pyeuclid - Google Code - 0 views
-
Vector, matrix and quaternion classes for use with 2D and 3D games and graphics applications. Compatible with Pygame.
6.5.1 Itertool functions - 0 views
-
6.5.1 Itertool functions The following module functions all construct and return iterators. Some provide streams of infinite length, so they should only be accessed by functions or loops that truncate the stream.
blog.bjrn.se: TrueCrypt explained - 0 views
-
he most popular cryptographic software for Windows is probably TrueCrypt. In this article I will explain how TrueCrypt works and as a by-product a working Python implementation will be provided. This article is written from a programmer perspective and the math will be kept to the minimum. The emphasis is on how TrueCrypt uses cryptographic primitives such as AES and SHA-1, not how the primitives themselves work.
NatPython/NatLink/Vocola - 0 views
Screen Shots - Wingware Python IDE - 1 views
« First
‹ Previous
181 - 200 of 461
Next ›
Last »
Showing 20▼ items per page