I am using code academy to learn how to do python, for this code
code:
I got this output
Output:
I would like to know what this output means.
Thank you
code:
Code:
x = range(0,11,2) x = enumerate(x) print(x)
Output:
Code:
<enumerate object at 0x7f737edc0190> None
Thank you
Comment