Question: 
Write a python function to find the nth digit in the proper fraction of two given numbers.


Model's Code:
def find_Nth_Digit(num, den, n):
    fraction = str(num // den) + '.'
    num = (num % den) * 10
    while len(fraction) < n + 2:
        fraction += str(num // den)
        num = (num % den) * 10
    return int(fraction[n + 1])



Sample Correct Code:
def find_Nth_Digit(p,q,N) :  
    while (N > 0) : 
        N -= 1;  
        p *= 10;  
        res = p // q;  
        p %= q;  
    return res;  


Asserts:
assert find_Nth_Digit(1,2,1) == 5
assert find_Nth_Digit(3,5,1) == 6
assert find_Nth_Digit(5,6,5) == 3


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 36 of 974: 28/36 (77.77777777777779%): success