Consider this piece of code
import pandas as pd T = pd.read_csv("MyFile.csv")
Which is the recommended method for accessing the Series of the DataFrame T?
T
T.MyColumn or T['MyColumn'] ?
T.MyColumn
T['MyColumn']