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.
|
|
|||||
|
|
|
Just create a string out of it.
That's enough. Now you can iterate over it:
Or you can slice it:
Or better, don't convert the user's input to an integer (the user types a string)
For more information read a tutorial. |
|||
|
|
|
|
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 |
||||||||||||||
|
|
|
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. |
||||||||||||
|
