def fib(n):
# n未満のフィボナッチ数列を全てprintします
a, b = 0, 1
while a < n:
print(a, end=' ')
a, b = b, a+b
print()
fib(1000)

print()の意味教えて欲しいんやがわかるやつおる?