Suppose a Period object is created in Pandas as -
In [1]: pd.Period('2021', 'M')
Out [1]: Period('2021-01', 'M')
What are the start and end points of this period object? How does the frequency M affect those start and end points? In fact, what role does this frequency play here?