My Perl-addicted friend shows me that he can find fibanicci series in a single line of code. perl -le '$b=1; print $a+=$b while print $b+=$a' can python do something like this?