> 
> On Feb 7, 2014, at 10:10 PM, Chris Angelico <ros...@gmail.com> wrote:
>> 
>> number = int(raw_input("Enter a five-digit number: "))
>> 
>> Now we begin to split it up:
>> 
>> foo = number % 10
>> bar = number / 10
>> 
Ok, so it this what you’re talking about?


number = int(raw_input(“Enter a five digit number:))
foo = number % 10
bar = number / 10

digit = foo / 10
rem = bar % 10  

????
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to