A trailing comma avoids the newline after the output : While « Language Basics « Python
- Python
- Language Basics
- While
A trailing comma avoids the newline after the output
a, b = 0, 1
while b < 1000:
print b,
a, b = b, a+b
Related examples in the same category