def fib(n): # write Fibonacci series up to n
>"""Print a Fibonacci series up to n."""
>a, b = 0, 1
>while a < n:
>>print(a, end=' ')
>>a, b = b, a+b
>print()
`fib`
<function fib at 10042ed0>
The terminal returns 'function fib a 10042ed0' when fib is entered. What is 10042ed0 and where and when is it formed?