vote up 14 vote down star
4

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 a pythonic paradigm.

Could you guys please comment on how I can make the following code more pythonic?

from math import sqrt

# recursively computes the factors of a number
def factors(num):
    factorList = []
    numroot = int(sqrt(num)) + 1
    numleft = num
    # brute force divide the number until you find a factor
    for i in range(2, numroot):
        if num % i == 0:
            # if we found a factor, add it to the list and compute the remainder
            factorList.append(i)
            numleft = num / i
            break
    # if we didn't find a factor, get out of here!
    if numleft == num: 
        factorList.append(num)
        return factorList
    # now recursively find the rest of the factors
    restFactors = factors(numleft)
    factorList.extend(restFactors)

    return factorList

# grabs  all of the twos in the list and puts them into 2 ^ x form
def transformFactorList(factorList):
    num2s = 0
    # remove all twos, counting them as we go
    while 2 in factorList:
        factorList.remove(2)
        num2s += 1
    # simply return the list with the 2's back in the right spot
    if num2s == 0: return factorList
    if num2s == 1:
        factorList.insert(0, 2)
        return factorList
    factorList.insert(0, '2 ^ ' + str(num2s))
    return factorList

print transformFactorList(factors(#some number))
flag

9 Answers

vote up 13 vote down

There is an excellent primer by David Goodger called "Code Like a Pythonista" here. A couple of things from that text re naming (quoting):

  • joined_lower for functions, methods, attributes

  • joined_lower or ALL_CAPS for constants

  • StudlyCaps for classes

  • camelCase only to conform to pre-existing conventions

link|flag
vote up 11 vote down

One other thing you might want to look at is the docstring. For example, the comment for this function:

# recursively computes the factors of a number
def factors(num):

Could be converted into this:

def factors(num):
    """ recursively computes the factors of a number"""

It's not really 100% necessary to do it this way, but it's a good habit to get into in case you ever start using something along the lines of pydoc.

You can also do this:

docstring.py

"""This is a docstring"""

at the command line:

>>> import docstring
>>> help(docstring)

results:

Help on module docstring:

NAME
    docstring - This is a docstring

FILE
    /Users/jason/docstring.py
link|flag
maybe show an example of from example import factors then help(factors) with the two – bvmou Sep 25 '08 at 23:01
vote up 7 vote down

Just use 'import math' and 'math.sqrt()' instead of 'from math import sqrt' and 'sqrt()'; you don't win anything by just importing 'sqrt', and code quickly gets unwieldy with too many from-imports. Also, things like reload() and mocking out for tests break a lot faster when you use from-import a lot.

The divmod() function is a convenient way to perform both division and modulo. You can use for/else instead of the separate check on numleft. Your factors function is a natural candidate for a generator. xrange() was already mentioned in another answer. Here's it all done that way:

import math

# recursively computes the factors of a number as a generator
def factors(num):
    numroot = int(math.sqrt(num)) + 1
    # brute force divide the number until you find a factor
    for i in xrange(2, numroot):
        divider, remainder = divmod(num, i)
        if not remainder:
            # if we found a factor, add it to the list and compute the
            # remainder
            yield i
            break
    else:
    # if we didn't find a factor, get out of here!
        yield num
        return
    # now recursively find the rest of the factors
    for factor in factors(divider):
        yield factor

Using a generator does mean you can only iterate over the result once; if you simply want a list (like you do in translateFactorsList) you will have to wrap the call to factors() in list().

link|flag
Whee! Generators! I was too slow... :-( Too bad I'm out of votes for today... – Torsten Marek Sep 25 '08 at 18:27
vote up 4 vote down

A few comments:

  1. I would replace range() with xrange(); when you call range(), it allocates the entire range all at once, whereas when you iterate over xrange(), it returns each result one at a time, saving memory.
  2. Don't put expressions after conditionals on the same line (if num2s -- 0: return factorList). It makes it harder to see at a glance what it's doing (that it's a block).
  3. Don't be afraid to use modules. The [sympy][1] module already has code to compute factors, which may simplify your code by eliminating most of it.
  4. Python's string formatting is simple and effective.

For example:

factorList.insert(0, '2 ^ ' + str(num2s))

could be changed to

factorlist.insert(0, '2 ^ %s' % num2s)

All in all, I don't find your code to be extensively un-pythonic. Just make sure you want to use floor division, because that's what tends to happen by default with integer values. Otherwise, you'll need to fix up the division operator:

from __future__ import division

A sometimes-frustrating caveat of the language.

link|flag
vote up 4 vote down
from itertools import takewhile

def transform_factor_list(factor_list):
    num_2s = len(list(takewhile(lambda e: e == 2, factor_list)))
    if num_2s > 1:
        factor_list[:num_2s] = ["2 ^ %i" % (num_2s, )]
    return factor_list

That's what I would make out of the second function.

Most pythonic changes:

  • PEP-8 compatible naming
  • slicing (and assigning to slices)
  • iterators
  • string formatting

The function assumes that the input is ordered, which is fulfilled by factors.

Edit: removed special cases for some lists, more compact this way

link|flag
vote up 3 vote down

Don't be afraid of list comprehensions. Switching from Java to Python and discovering them was a good day.

For the factors function, maybe something like this:

def factors(num):
    return [i for i in xrange(1, num+1) if num % i == 0]

Probably not the best code but it's short and easy to understand.

Good luck with Python, it's a great language.

link|flag
Umm... Casey this was from September. :P – Evan Fosmark Jan 12 '09 at 5:04
Evan, it was on the little thing on the right "Related" :) thought I might say something hehehe – Casey Jan 12 '09 at 5:17
I appreciate the help. I still check on my old stuff. – jjnguy Jan 12 '09 at 19:40
vote up 2 vote down

Here's what jumps out at me:

def transformFactorList(factorList):
    oldsize = len(factorList)
    factorList = [f for f in factorList if f != 2]
    num2s = oldsize - len(factorList)
    if num2s == 0:
        return []
    if num2s == 1:
        return [2]+factorList
     return ['2 ^ %s' % num2s] + [factorList]

The form [f for f in factorList if f != 2] is called a list-comprehension.

link|flag
vote up 2 vote down

Since this post seems to be resurrected by Casey (lol), I'll add in my 2 cents.

Go over everything in PEP-8. It helped me out substantially when I had code formatting issues.

link|flag
vote up 1 vote down

this is how I'd do this...

import itertools
import collections

def factorize(n):
	# ideally an iterator of prime numbers
	# this'll work though
	divisors = itertools.count(2)

	divisor = divisors.next()
	while True:
		if divisor**2 > n:
			yield n
			break

		a,b = divmod(n, divisor)

		if b == 0:
			yield divisor
			n = a
		else:
			divisor = divisors.next()

def compress(factors):
	summands = collections.defaultdict(lambda: 0)

	for factor in factors:
		summands[factor] += 1

	return [(base, summands[base]) for base in sorted(summands)]

def tostring(compressed):
	return ' * '.join("%d**%d" % factor for factor in compressed)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.