there is a problem, holp someone could help me,thanks

rantingrick rantingrick at gmail.com
Wed Aug 24 14:39:21 EDT 2011


On Aug 24, 10:59 am, kangshu... at hotmail.com wrote:
> Now I have a problem and I holp someone can help me.
>
> def fib(x):
>     if x==0 or x==1: return 1
>     else: return fib(x-1) + fib(x-2)

This must be from "How not to program". Was this a personal pick or
recommendation?





More information about the Python-list mailing list