Tagged Questions
-2
votes
1answer
77 views
Can `dict` replace `list` when memory is not a concern? [closed]
I could represent any list as a dictionary whose keys are the valid list indices, and whose values are the list's items. E.g., [5, 6, 'a'] would be represented as {0:5, 1:6, 2:'a'}.
In terms of ...
19
votes
3answers
427 views
Subclassing builtin types in Python 2 and Python 3
When subclassing builtin types, I noticed a rather important difference between Python 2 and Python 3 in the return type of the methods of the built-in types. The following code illustrates this for ...
3
votes
2answers
422 views
problem subclassing builtin type
# Python 3
class Point(tuple):
def __init__(self, x, y):
super().__init__((x, y))
Point(2, 3)
would result in
TypeError: tuple() takes at most 1
argument (2 given)
Why? What ...
2
votes
3answers
723 views
subclassing float to force fixed point printing precision in python
[Python 3.1]
I'm following up on this answer:
class prettyfloat(float):
def __repr__(self):
return "%0.2f" % self
I know I need to keep track of my float literals (i.e., replace 3.0 with ...