Search Results

8
votes
7answers
505 views

Confusing […] List in Python: What is it?

So I was writing up a simple binary tree in Python and came across [...] I don't believe this to be related to the Ellipsis object, more it seems to have something to do with an infinity lo …
0
votes

Need instructions for Reversi game

You'll need a 2D array. Beware of [[0] * 8] * 8, instead use [[0 for _ in [0] * 8] for _ in [0] * 8] White should be 1 and black -1 (Or vice versa, of course). This way you can do flips wit …
-3
votes

How do I determine the size of an object in Python?

Besides int and float, nothing is really fixed in size (And int is now long in Python 3, so so much for that). So you'd have to make a function sizeof function that specially works on the object ba …