Mega Code Archive

 
Categories / Python / Language Basics
 

A trailing comma avoids the newline after the output

a, b = 0, 1 while b < 1000:      print b,      a, b = b, a+b