In the following code using python/pandas:
import numpy as np
import pandas as pd
s = pd.Series([1, 3, 5, 12, 6, 8])
print(s)
We get the following output:
0 1
1 3
2 5
3 12
4 6
5 8
dtype: int64
Why does it print out this line: dtype: int64
when I don't see that print statement anywhere in the code?