Re: [Tutor] Fib sequence code assignment

2014-03-22 Thread spir
On 03/21/2014 10:21 PM, Gary wrote: Dear Jerry, Thank you so much, once you see it it seems so clear, but to see it I might as well be in the Indian Ocean. Got kinda close using temporary variable,but didn't know enough to use del. A lesson learn. You don't need del (here). Every variable

[Tutor] Fib sequence code assignment

2014-03-21 Thread Gary
Dear Jerry, Thank you so much, once you see it it seems so clear, but to see it I might as well be in the Indian Ocean. Got kinda close using temporary variable,but didn't know enough to use del. A lesson learn. Sent from my iPad ___ Tutor maillist

Re: [Tutor] Fib sequence code assignment

2014-03-21 Thread Alan Gauld
On 21/03/14 21:21, Gary wrote: Got kinda close using temporary variable,but didn't know enough to use del. You don't really need to usae del, thats just being closer to what Python does - ie not leaving any temporary variables lying around. But in most programming languages you wouldn't