Hot answers tagged python
15
>>> from operator import mul
>>> nums = [1, 2, 3]
>>> reduce(mul, nums)
6
On Python 3 you will need to add this import: from functools import reduce
Implementation Artifact
In Python 2.5 / 2.6 You could use vars()['_[1]'] to refer to the list comprehension currently under construction. This is horrible and should never be used ...
8
No; a list comprehension produces a list that is just as long as its input. You will need one of Python's other functional tools (specifically reduce() in this case) to fold the sequence into a single value.
7
Here is the fixed-up code (added a count += 1 after the else-clause to make sure it terminates):
list=['a','a','x','c','e','e','f','f','f']
i=0
count = 0
while count < len(list)-2:
if list[i] == list[i+1]:
if list [i+1] != list [i+2]:
print list[i]
i+=1
count +=1
else:
print "no"
...
6
SwapCities is mutating the contents of solution.
Since solution points to the same list as IncumbentSolution, the values inside IncumbentSolution are altered too.
To preserve the original values in IncumbentSolution, make a new copy of the list:
tmpsolution = list(IncumbentSolution)
makes a shallow copy of the the original list. Since the contents of ...
6
Declare a local variable inside the function. In your code you're actually modifying the global variable factors every time you call factor().
def factor(n, factors=None):
factors = [] if factors is None else factors
for i in range(2, n + 1):
if n%i==0 and i not in factors: #checks for duplicates as well
factors.append(i)
...
5
Have you checked out http://www.geekviewpoint.com/? It's probably the best way to learn how to write algorithms in Python the easy way. Check it out. As a bonus it's a very clean website where the only advertisement I have seen recently is about an android brainy puzzle app by axdlab called "Puzz!". The site itself has all sorts of algorithms and good ...
5
You can do this all as one statement:
update users
set count_actons = (select count(*) from actions a where a.uid = users.uid)
No for loop. No multiple queries. Do in SQL what you can do in SQL. Generally looping over rows is something you want to do in the database rather than in the application.
5
Looks like you never called the function you defined:
aStr = raw_input('Enter a word: ') #raw_input already returns a string ,no need of str
char = raw_input('Enter a character: ')
print isIn(char, aStr) #call the function to run it
Demo:
Enter a word: foo
Enter a character: o
True
Functions definition and execution:
The ...
5
I interpret non-positive to include 0 so the conditions end up being
x != y
x >= 0
So the comprehension becomes:
>>> [(x,y) for x in range(Z-2,Z+2) for y in range(W-2,W+2) if x != y and x >= 0]
[(0, 3), (0, 4), (0, 5), (0, 6), (1, 3), (1, 4), (1, 5), (1, 6), (2, 3), (2, 4), (2, 5), (2, 6)]
Another example: Select the numbers between 0 and ...
4
map(''.join,zip(List1,List2,List3))
>>>
['A1A1', 'B2B2', 'C3C3']
Explanation:
zip(List1,List2,List3)
Returns
[('A', '1', 'A1'), ('B', '2', 'B2'), ('C', '3', 'C3')]
Each tuple repesents the elements associated with an index N in the zipped lists. We want to combine the elements in each tuple into a single string. For a single tuple we can ...
4
You should use shutil.copyfile() or shutil.copyfileobj() instead, which does this efficiently and correctly using a buffer.
Not that it is particularly hard, shutil.copyfileobj() is implemented as:
def copyfileobj(fsrc, fdst, length=16*1024):
"""copy data from file-like object fsrc to file-like object fdst"""
while 1:
buf = ...
4
You already seem to understand that c = b is different to c = b[:]. In the first case c references the same object as b. In the latter it references a copy of b.
So it shouldn't be surprising that since b.sort() sorts the list referenced by b, When you inspect c it is also sorted - because it's the same object
The usual way to decouple a sorted list from ...
3
The error is because function names are not string you can't call function like 'func1'() it should be func1(),
You can do like:
{
'func1': func1,
'func2': func2,
'func3': func3,
}.get(choice)()
its by mapping string to function references
side note: you can write a default function like:
def notAfun():
print "not a valid function name"
and ...
3
A good option is JSBeautifier, which can handle most free obfuscators (actually, any obfuscator I know). There is an option to eval the Javascript using Rhino, but it's blacklisted by default (being unsafe).
Disclosure: I coauthored JSBeautifier, specifically I wrote the Python deobfuscation architecture. By the way, if you find some JS that JSBeautifier ...
3
I'd say the code you need is:
test = input("enter the test")
print(test)
Otherwise it shouldn't run at all, due to a syntax error. The print function requires brackets in python 3. I cannot reproduce your error, though. Are you sure it's those lines causing that error?
3
You'll have to store a reference back to the parent; python values do not track where they are stored (there can be multiple places that refer to your Status() instances):
class Status(object):
def __init__(self, parent=None):
self._message = ''
self._parent = parent
@property
def message(self):
return self._message
...
3
Something like this using Python:
files = ["file1","file2","file3"]
with open("output_file","w") as outfile:
with open(files[0]) as f1:
for line in f1: #keep the header from file1
outfile.write(line)
for x in files[1:]:
with open(x) as f1:
for line in f1:
if not line.startswith("#"):
...
3
Python's slice-assignment syntax means "make this slice equal to this value, expanding or shrinking the list if necessary". To fully understand it you may want to try out some other slice values:
a = [1, 2, 3]
b = [4, 5, 6]
First, lets replace part of A with B:
a[1:2] = b
print(a) # prints [1, 4, 5, 6, 3]
Instead of replacing some values, you can add ...
3
One caveat is that .read() isn't necessarily guaranteed to read the entire file at once, so you must make sure to repeat the read/write cycle until all of the data has been copied. Another is that there may not be enough memory to read all of the data at once, in which case you'll need to perform multiple partial reads and writes in order to complete the ...
3
Those two forms of indexing are not the same. You should use [i, j] and not [i][j]. Even where both work, the first will be faster (see this quesstion).
Using two indices [i][j] is two operations. It does the first index and then does the second on the result of the first operation. [:] just returns the entire array, so your first one is equivalent to ...
3
urllib.request.urlopen returns a bytes object, not a (Unicode) string. You should decode it before trying to match anything. For example, if you know your page is in UTF-8:
webpage = urlopen(url).read().decode('utf8')
Better HTTP libraries will automatically do this for you, but determining the right encoding isn't always trivial or even possible, so ...
3
>>> lis1 = ['A', 'B', 'C']
>>> lis2 = ['X', 'Y', 'Z']
>>> z1 = zip(lis1,lis1[1:]) #use itertools.izip in py2x for memory efficiency
>>> z2 = zip(lis2,lis2[1:])
>>> for x,y in zip(z1,z2):
... print x,y
('A', 'B') ('X', 'Y')
('B', 'C') ('Y', 'Z')
3
Your code is actually really close to being functional. You just have a logical error in your conditional.
There are some optimizations you can make for a primality test like only checking up until the square root of the given number.
def is_prime(x):
if x >= 2:
for i in range(2,x):
if x % i == 0: # <----- You need to be ...
3
Each group is an iterable, and turning that into a list exhausts it. You cannot turn an iterable into a list twice.
Store the list as a new variable:
for key, group in groupby(sorted(words, key = len), len):
grouplist = list(group)
if len(grouplist) > 1:
print grouplist
Now you consume the iterable only once:
>>> for key, ...
3
The reason that the recipe is faster is that its key pieces (islice, deque) are implemented in C, rather than in pure Python. Part of it is that a C loop is faster than for i in xrange(n). Another part is that Python function calls (e.g. next()) are more expensive than their C equivalents.
The version of itertools.islice that you've copied from the ...
3
List comprehension always creates another list, so it's not useful in combining them (e.g. to give a single number). Also, there's no way to make an assignment in list comprehension, unless you're super sneaky.
The only time I'd ever see using list comprehensions as being useful for a sum method is if you only want to include specific values in the list, or ...
3
Most of your RAM is free for applications, because it's used for the buffers and caching. Look at the "-/+ buffers/cache:" line to see the amount of RAM that is really used/free. An explanation can be found here.
To verify wether Python is leaking memory, monitor that python's RSS size (or %mem) over time. E.g. write a shell-script that is called from a ...
2
The function definition
def swatch(x):
defines x to be a local variable.
x = [0, 0, 0, 0]
reassigns the local variable x to a new list.
This does not affect the global variable x of the same name.
You could remove x from the arguments of swatch:
def swatch():
x = [0, 0, 0, 0]
but when Python encounters an assignment inside a function ...
2
If the program reads from stdin, just put everything in a file:
stra.dat
straa.tif
512 512
8 8 8
n
And the run:
./atompot < filename
If you want to do something more complex (ie parse the output or implement branching), you could look into subprocess.Popen in python.
2
As can be seen from the many other answers, there are multiple ways to solve this in python. Here's one such example:
>>> from operator import add
>>> List1 = ['A', 'B', 'C']
>>> List2 = ['1', '2', '3']
>>> map(add, List1, List2)
['A1', 'B2', 'C3']
What you're essentially looking for though, is zipWith, I link to ...
Only top voted, non community-wiki answers of a minimum length are eligible


