10
votes
Passing a list while retaining the original
You can call burninate() with a copy of the list like this:
d = burninate(a[:])
or,
d = burninate(list(a))
The other alternati …
6
votes
What is the least resource intense data structure to distribute with a Python Application
The standard shelve module will give you a persistent dictionary that is stored in a dbm style database. Providing that your keys are strings and your values are picklable (since you'r …
1
vote
urllib.urlopen isn’t working. Is there a workaround?
Possibly this is a DNS issue, try urlopen with the IP address of the web server you're accessing, i.e.
import urllib
URL="http://66.102.11.99" # www.google.com
f = urllib.urlopen( …
16
votes
math.sin incorrect result
>>> import math
>>> print math.sin.__doc__
sin(x)
Return the sine of x (measured in radians).
math.sin expects its argument to be in radians, not degree …
1
vote
Python differences: a+= [b] vs a = a + [b] …
Dav's explained what's going on. IMO this is a clearer implementation as it is less prone to misunderstanding:
class Foo:
bar = []
def __init__(self, x):
self.bar.a …
7
votes
Adding even values to new list Python.
List comprehension is the way to go:
list1 = [1,2,3,4,5]
list2 = [i for i in list1 if i%2 == 0]
print list2 # => [2, 4]
…
