Tagged Questions

Pythonic is a description of the most idiomatic Python code. Not only does this mean that the code is easy to understand for other programmers, but it is also very often the most efficient way to use Python.

learn more… | top users | synonyms

83
votes
7answers
16k views

What is a clean, pythonic way to have multiple constructors in Python?

I can't find a definitive answer for this. AFAIK, you can't have multiple __init__ functions in a Python class. So what is a good way to solve this problem? Suppose I have an class called Cheese ...
41
votes
10answers
2k views

What defines “pythonian” or “pythonic”?

I want to begin to learn Python, and I've seen that phrase come up here before, but I don't know exactly what it means. I've read some websites on Python scripting, but I don't recall ever seeing that ...
38
votes
1answer
347 views

What is the effect of “list=list” in Python modules?

I've seen following code in the python standard library /usr/lib/python2.7/multiprocessing/dummy/__init__.py: list = list dict = dict What does this idiom mean? My best guess is: "let's check if ...
35
votes
10answers
1k views

Any reason NOT to always use keyword arguments?

Before jumping into python, I had started with some Objective-C / Cocoa books. As I recall, most functions required keyword arguments to be explicitly stated. Until recently I forgot all about this, ...
35
votes
12answers
4k views

What is the most “pythonic” way to iterate over a list in chunks?

I have a Python script which takes as input a list of integers, which I need to work with four integers at a time. Unfortunately, I don't have control of the input, or I'd have it passed in as a list ...
33
votes
3answers
21k views

How to get the last element of a list?

I found many different ways of getting the last element from a list in Python: alist[-1] alist[len(alist) -1] How would you do this?
22
votes
12answers
2k views

Beginner wondering if his code is 'Pythonic'

This is really the first thing that I have written in python. I come from Java background. I don't want to just learn how to program java code with Python syntax. I want to learn how to program in ...
21
votes
7answers
2k views

Reclassing an instance in Python

I have a class that is provided to me by an external library. I have created a subclass of this class. I also have an instance of the original class. I now want to turn this instance into an instance ...
21
votes
5answers
7k views

Differences between Python game libraries Pygame and Pyglet?

I've had some experience with Pygame, but there seems to be a lot of buzz around Pyglet these days. How do these two libraries compare? What would be the advantage of using one over the other, both ...
20
votes
3answers
24k views

Python loop counter in a for loop

In my example code below, is the counter = 0 really required, or is there a better, more Python, way to get access to a loop counter? I saw a few PEPs related to loop counters, but they were either ...
20
votes
7answers
3k views

list.append or list +=?

Which is more pythonic? list.append(1) or list += [1]
19
votes
5answers
10k views

Python-Check a variable is integer or not

In python how to check whether a variable is integer or not..
18
votes
9answers
1k views

Good or bad practice in Python: import in the middle of a file

Suppose I have a relatively long module, but need an external module or method only once. Is it considered OK to import that method or module in the middle of the module? Or should imports only be ...
17
votes
7answers
983 views

Is it Pythonic to use bools as ints?

False is equivalent to 0 and True is equivalent 1 so it's possible to do something like this: def bool_to_str(value): """value should be a bool""" return ['No', 'Yes'][value] ...
16
votes
9answers
231 views

Pythonic method of determining a list's contents change from odd to even values

Writing some test cases and my mind wanders, assuming there is a better way to write something like this. I have a list, its numbers transition from all odd values to all even, doesn't matter where. ...
16
votes
5answers
382 views

The Zen of Python distils the guiding principles for Python into 20 aphorisms but lists only 19. What's the twentieth?

From PEP 20, The Zen of Python: Long time Pythoneer Tim Peters succinctly channels the BDFL's guiding principles for Python's design into 20 aphorisms, only 19 of which have been written down. ...
15
votes
7answers
380 views

pythonic way to iterate over part of a list

I want to iterate over everything in a list except the first few elements, e.g.: for line in lines[2:]: foo(line) This is concise, but copies the whole list, which is unnecessary. I could do: ...
13
votes
7answers
445 views

Is it Pythonic to use list comprehensions for just side effects?

Think about a function that I'm calling for it's side effects, not return values(like printing to screen, updating gui, printing to a file, etc.). def fun_with_side_effects(x): ...side ...
13
votes
7answers
934 views

Are object literals Pythonic?

JavaScript has object literals, e.g. var p = { name: "John Smith", age: 23 } and .NET has anonymous types, e.g. var p = new { Name = "John Smith", Age = 23}; // C# Something similar can be ...
13
votes
4answers
646 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 which is pythonic? val ...
13
votes
13answers
2k views

What are the important language features (idioms) of Python to learn early on

I would be interested in knowing what the StackOverflow community thinks are the important language features (idioms) of Python. Features that would define a programmer as Pythonic. Python (pythonic) ...
13
votes
13answers
1k views

Python: Am I missing something?

I'm in the process of learning Python while implementing build scripts and such. And for the moment everything is working fine in that the scripts do what they need to do. But I keep having the ...
13
votes
3answers
7k views

How to dynamically load a Python class

Given a string of a Python class, e.g. 'my_package.my_module.MyClass', what is the best possible way to load it? In other words I am looking for a Class.forName() function in Python. It needs to work ...
12
votes
12answers
373 views

Most Pythonic Way to Split an Array by Repeating Elements

I have a list of items that I want to split based on a delimiter. I want all delimiters to be removed and the list to be split when a delimiter occurs twice. For example, if the delimiter is 'X', ...
12
votes
6answers
228 views

Pythonic way to assign default values

Consider this line: some_value = lst.attr[idx] There are two possible errors here, the attr might not exist, and the idx might be out of range. Is there any elegant way to reduce this statement? ...
12
votes
3answers
299 views

Custom dictionary lookup in Python

if I have a dictionary like this >>> d = {10: 3, 100: 2, 1000: 1} I can type something like: >>> d.get(10), d.get(100), d.get(1000) (3, 2, 1) Though I want that if the given ...
12
votes
3answers
816 views

What does “Complex is better than complicated” mean?

In "The Zen of Python", by Tim Peters, the sentence "Complex is better than complicated" confused me. Can anyone give a more detailed explanation or an example?
12
votes
6answers
1k views

pythonic way to do something N times

Hey! Every day I love python more and more. Today, I was writing some code like: for i in xrange(N): do_something() I had to do something N times. But each time didn't depend on the value of ...
11
votes
2answers
140 views

Better assert() in Python - Improve it [closed]

Yesterday a friend of mine who is a ruby fan (poor guy!) showed me wrong. wrong improves the buildin assert in Ruby adding a more detailed messages and the content of asserted variables at the point ...
11
votes
2answers
235 views

What's the most Pythonic way to identify consecutive duplicates in a list?

I've got a list of integers and I want to be able to identify contiguous blocks of duplicates: that is, I want to produce an order-preserving list of duples where each duples contains ...
11
votes
4answers
902 views

Pairs from single list

Often enough, I've found the need to process a list by pairs. I was wondering which would be the pythonic and efficient way to do it, and found this on Google: pairs = zip(t[::2], t[1::2]) I ...
11
votes
3answers
524 views

Reason why there is no “if Empty” in Python

The Zen of Python says "Explicit is better than implicit." I find that an is Empty to check whether some sequence is empty is so much more explicit than implicit booleanness. if some_sequence is ...
11
votes
9answers
416 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): count = [0,0] ...
11
votes
5answers
3k views

Pythonic way to split comma separated numbers into pairs

I'd like to split a comma separated value into pairs: >>> s = '0,1,2,3,4,5,6,7,8,9' >>> pairs = # something pythonic >>> pairs [(0, 1), (2, 3), (4, 5), (6, 7), (8, 9)] ...
11
votes
6answers
843 views

Pythonic ways to use 'else' in a for loop

I have hardly ever noticed a python program that uses else in a for loop. I recently used it to perform an action based on the loop variable condition while exiting; as it is in the scope. What is ...
10
votes
4answers
153 views

What are prevalent techniques for enabling user code extensions in Python?

I'm looking for techniques that allow users to override modules in an application or extend an application with new modules. Imagine an application called pydraw. It currently provides a Circle ...
10
votes
3answers
179 views

getting python sequence assignments & unpacking RIGHT

Consider these expressions... Please be patient... this is a LONG list... (Note: some expression are repeated -- this is just to present a "context") a, b = 1, 2 # simple ...
10
votes
2answers
315 views

Pythonic way to find maximum value and its index in a list?

if I want maximum value, I can just write max(List), but what if I also need the index of the maximum value? I can write something like this: maximum=0 for i,value in enumerate(List): if ...
10
votes
4answers
3k views

deleting items from a dictionary while iterating over it

Is it legitimate to delete items from a dictionary in Python while iterating over it? For example: for k, v in mydict.iteritems(): if k == val: del mydict[k] The idea is to remove elements ...
10
votes
4answers
370 views

What is the Pythonic Way of Differentiating Between a String and a List?

For my program I have a lot of places where an object can be either a string or a list containing strings and other similar lists. These are generally read from a JSON file. They both need to be ...
10
votes
8answers
499 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 together from reading ...
10
votes
10answers
5k views

Iterate over pairs in a list (circular fashion) in Python

The problem is easy, I want to iterate over each element of the list and the next one in pairs (wrapping the last one with the first). I've thought about two unpythonic ways of doing it: def ...
10
votes
2answers
2k views

Python Dictionary to URL Parameters

I am trying to convert a Python dictionary to a string for use as URL parameters. I am sure that there is a better, more Pythonic way of doing this. What is it? x = "" for key, val in {'a':'A', ...
10
votes
6answers
9k views

What is the best way to call a python script from another python script?

I have a script named test1.py which is not in a module. It just has code that should execute when the script itself is run. There are no functions, classes, methods etc. I have another script which ...
10
votes
2answers
1k views

HTTP Authentication in Python

Whats is the python urllib equivallent of curl -u username:password status="abcd" http://example.com/update.json I did this: handle = urllib2.Request(url) authheader = "Basic %s" % ...
10
votes
6answers
1k views

What does “pythonic” mean?

exact duplicate: http://stackoverflow.com/questions/58968/what-defines-pythonian-or-pythonic I have no python experience at all. Help me to understand this term. Please provide code examples and ...
9
votes
3answers
131 views

Itertools for containers

Considder the following interactive example >>> l=imap(str,xrange(1,4)) >>> list(l) ['1', '2', '3'] >>> list(l) [] Does anyone know if there is already an implementation ...
9
votes
8answers
2k views

How to clamp an integer to some range? (in Python)

I have the following code: new_index = index + offset if new_index < 0: new_index = 0 if new_index >= len(mylist): new_index = len(mylist) - 1 return mylist[new_index] Basically, I ...
9
votes
4answers
290 views

More elegant way to initialize list of duplicated items in Python

If I want a list initialized to 5 zeroes, that's very nice and easy: [0] * 5 However if I change my code to put a more complicated data structure, like a list of zeroes: [[0]] * 5 will not work ...
9
votes
4answers
1k views

Returning the product of a list

Is there a more concise, efficient or simply pythonic way to do the following? def product(list): p = 1 for i in list: p *= i return p EDIT: I actually find that this is ...

1 2 3 4 5 11