On Aug 24, 10:59 am, kangshu...@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?


-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to