3
votes
8answers
217 views
Can this be made more pythonic?
I came across this (really) simple program a while ago. It just outputs the first x primes. I'm embarrassed to ask, is there any way to make it more "pythonic" ie condense it whil …
2
votes
9answers
241 views
More pythonic way of skipping header lines
Is there a shorter (perhaps more pythonic) way of opening a text file and reading past the lines that start with a comment character?
In other words, a neater way of doing this
f …
10
votes
9answers
288 views
Is there a more succinct / pythonic way to do this? (counting longest seq of heads, tails in coin flips)
Count the longest sequence of heads and tails in 200 coin flips.
I did this - is there a niftier way to do it in python? (without being too obfuscated)
import random
def toss(n) …
3
votes
4answers
187 views
“”.join(reversed(val)) vs val[::-1]…which is pythonic?
So according to the Zen of Python ... Explicit is better than implicit...Sparse is better than dense...Readability counts...but then again Flat is better than nested...so then whic …
2
votes
4answers
157 views
Pythonic way to find a regular expression match
Is there a more succinct/correct/pythonic way to do the following:
url = "http://0.0.0.0:3000/authenticate/login"
re_token = re.compile("<[^>]*authenticity_token[^>]*valu …
0
votes
2answers
60 views
Class Objects and comparing specific attributes
Hi all
I have the following code.
class person(object):
def __init__(self, keys):
for item in keys:
setattr(self, item, None)
def __str__(self):
…
6
votes
7answers
152 views
Summing Consecutive Ranges Pythonically
I have a sumranges() function, which sums all the ranges of consecutive numbers found in a tuple of tuples. To illustrate:
def sumranges(nums):
return sum([sum([1 for j in ran …
7
votes
8answers
459 views
What is the pythonic way to detect the last element in a python ‘for’ loop?
I'd like to know the best way (more compact and "pythonic" way) to do a special treatment for the last element in a for loop. There is a piece of code that should be called only be …
3
votes
5answers
100 views
How to assert that zeo or only one of N given arguments is passed
I have a definition like this
def bar(self, foo=None, bar=None, baz=None):
pass
I want to make sure a maximum of one of foo, bar, baz is passed. I can do
if foo and bar:
…
1
vote
2answers
59 views
OCaml question:How to construct a formated string in pythonic way…
All of these start from a simple idea: How to write python-style formatted string in ocaml.
pythoners could init a string as:
str = "this var: %s" % this_var
str2 = "this: %s; th …
1
vote
6answers
101 views
Creating class instance properties from a dictionary in Python
I'm importing from a CSV and getting data roughly in the format
{ 'Field1' : 3000, 'Field2' : 6000, 'RandomField' : 5000 }
The names of the fields are dynamic. (Well, they're d …
0
votes
5answers
129 views
Converting a single ordered list in python to a dictionary, pythonically
I can't seem to find an elegant way to start from t and result in s.
>>>t = ['a',2,'b',3,'c',4]
#magic
>>>print s
{'a': 2, 'c': 4, 'b': 3}
Solutions I've come …
8
votes
8answers
293 views
Is there a better, pythonic way to do this?
This is my first python program -
Requirement: Read a file consisting of {adId UserId} in each line. For each adId, print the number of unique userIds.
Here is my code, put toge …
6
votes
4answers
226 views
Pythonic way to only do work first time a variable is called
Hello,
my Python class has some variables that require work to calculate the first time they are called. Subsequent calls should just return the precomputed value.
I don't want t …
1
vote
4answers
99 views
Pythonic way to print a table
I'm using this simple function:
def print_players(players):
tot = 1
for p in players:
print '%2d: %15s \t (%d|%d) \t was: %s' % (tot, p['nick'], p['x'], p['y'], p[ …
