vote up 1 vote down star

I'm writing a program which calculates the check digit of an ISBN number. I have to read the user's input (nine digits of an ISBN) into an integer variable, and then multiply the last digit by 2, the second last digit by 3 and so on. How can I "split" the integer into its constituent digits to do this? As this is a basic exercise I am not supposed to use a list.

flag
is this a homework? – SilentGhost Jun 10 at 11:16
probably... ;) – Charlie Somerville Jun 10 at 11:18

3 Answers

vote up 15 vote down check

Just create a string out of it.

myinteger = 212345
number_string = str(myinteger)

That's enough. Now you can iterate over it:

for ch in number_string:
    print ch # will print each digit in order

Or you can slice it:

print number_string[:2] # first two digits
print number_string[-3:] # last three digits
print number_string[3] # forth digit


Or better, don't convert the user's input to an integer (the user types a string)

isbn = raw_input()
for pos, ch in enumerate(reversed(isbn)):
    print "%d * %d is %d" % pos + 2, int(ch), int(ch) * (pos + 2)

For more information read a tutorial.

link|flag
vote up 5 vote down
while number:
    digit = number % 10
    # do whatever with digit
    number /= 10

On each iteration of the loop, it removes the last digit from number, assigning it to $digit. It's in reverse, starts from the last digit, finishes with the first

link|flag
what does it do? – SilentGhost Jun 10 at 11:32
I added an explanation. If you don't see how it works, take a piece of paper and go through the process step-by-step for a number of choice. – Alexandru Nedelcu Jun 10 at 11:36
It extracts the digits from the given number, assuming base 10, starting with the least significant digit. This is a mathematical approach instead of a Pythonic one. An approach that will work in any language. And an approach that will also work when one is interested in the digits of a number written in another base (unlike the other solutions posted here). Hence: +1. – Stephan202 Jun 10 at 11:37
1  
what is that? php? This solution is very unpythonic. – nosklo Jun 10 at 11:43
1  
@Stephan202: int is working with any base, not only base 10. – SilentGhost Jun 10 at 11:43
show 5 more comments
vote up 3 vote down
list_of_ints = [int(i) for i in str(ISBN)]

Will give you a sorted list of ints. Of course, given duck typing, you might as well work with str(ISBN).

Edit: As mentioned in the comments, this list isn't sorted in the sense of being ascending or descending, but it does have a defined order (sets, dictionaries, etc in python in theory don't, although in practice the order tends to be fairly reliable). If you want to sort it:

list_of_ints.sort()

is your friend. Note that sort() sorts in place (as in, actually changes the order of the existing list) and doesn't return a new list.

link|flag
2  
or: list_of_ints = map(int, str(ISBN)) – paffnucy Jun 10 at 11:18
yay, paffnucy! Let's not forget map/reduce/zip et al.! – Daren Thomas Jun 10 at 11:22
"sorted list of ints"? in what sense is it going to be "sorted"? – SilentGhost Jun 10 at 11:44
@Daren - not always faster, but usually more readable (excluding reduce() ^^) – paffnucy Jun 10 at 12:03
Sorted in the sense that it has a defined order, as opposed to say a tuple or a set. I'll edit that into the answer... – mavnn Jun 10 at 21:49
show 2 more comments

Your Answer

Get an OpenID
or

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