vote up 1 vote down star

I'm working with fractions using Python's decimal module and I'd like to get just the repeating part of a certain fraction. For example: if I had 1/3 I'd like to get 3, if I had 1/7 I'd like to get 142857. Is there any standard function to do this?

flag

60% accept rate
Project Euler n° 26? – ChristopheD Jul 12 at 21:47
Yes, Project Euler n° 26. – fmartin Jul 12 at 21:50
I wasn't asking for a way to solve the problem, I was just asking if there was a function which did this (apparently it doesn't). – fmartin Jul 12 at 22:43
There was a new fractions module introduced in python 2.6 iirc, but I'm not really sure what it can do exactly). – ChristopheD Jul 12 at 22:50

2 Answers

vote up 1 vote down

Find the first number of the form 10**k - 1 that divides exactly by the denominator of the fraction, divide it by the denominator and multiply by the numerator and you get your repeating part.

link|flag
vote up 1 vote down

Since giving the answer could be a spoiler for project euler (which is generally not done here at stackoverflow), I'd like to give this hint: read this (section 1.2 should ring a bell).

link|flag

Your Answer

Get an OpenID
or

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