Search Results

0
votes
2answers
201 views

Problem regarding 3.0’s “hashlib” module

I've been working on getting a 2.5 module ported to 3.0, mostly for my own education, when I've gotten stuck. The class "Builder" has as its init: def __init__(self, **options): …
0
votes

Need instructions for Reversi game

You may also wish to consider the application of a "fuzzy logic" loop to analyze positions. Reversi/Othello is notorious for forcing players to consider certain strategic gains against strategic lo …
0
votes

Which programming language to learn now?

I'd recommend Python. Both do well on multiple platforms, and Python has a few tools like Psyco and Shedskin that can increase speed dramatically. Python's also very closely coupled with C, which c …
0
votes

How do you split a list into evenly sized chunks in Python?

(explicit) def chunk(lst): out = [] for x in xrange(2, len(lst) + 1): if not len(lst) % x: factor = len(lst) / x break while lst: out.ap …
1
vote

python, basic question on loops

While raw_input("loop again? y/n ") != 'n': do_stuff() …
1
vote

Will Python 3.0’s backwards-incompatibility affect adoption?

I don't think anyone expects Python 3 to be instantly adopted. As far as I know, GvR is still planning on supporting the 2.x line for several more years while Python 3 gathers momentum. I t …
1
vote

Why doesn’t Python have a switch statement?

Fast note: If you want "fall-through" behavior, don't use an elif statement, because if it executes it exes the if-elif-else block. A series of pure "if" statements, however, will fall through. …
3
votes

dropping trailing ‘.0’ from floats

def floatstrip(x): if x == int(x): return str(int(x)) else: return str(x) Be aware, though, that Python represents 0.1 as an imprecise float, on my …
11
votes

zen of python

"Beautiful is better than ugly." Behold, Euler's Algorithm to find the greatest common denominator in 4 lines: def gcd(x, y): while y: x, y = y, x % y return …