Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~431 People Reached
Favorite Forums
Favorite Tags
Member Avatar for debragail

I have been using Super Duper to create a bootable copy of my hard drive nightly. (This is in addition to using Time Machine.) My hard drive has a capacity of 1TB of which 250GB is used. My backup drive is a firewire 800 WD MyBook 1TB. I noticed that …

Member Avatar for dioioib
0
258
Member Avatar for debragail

The following code iteratively calculates continued fractions. I'm having trouble separating the numerator and denominator from the returned value. [code=python]def cf3(terms, iterations): answer = 0 for n in range(iterations, 0, -1): answer = Fraction(1, terms[n] + answer) answer += Fraction(terms[0], 1) return answer [/code] The following is sample output showing …

Member Avatar for debragail
0
173