I want to know the list of all possible data types returned by pandas.DataFrame.dtypes.
(A) As per https://pbpython.com/pandas_dtypes.html the following are all the possible data types in pandas:
object, int64, float64, bool, datetime64, timedelta, category
(B) This SO answer talks about pandas supporting many more kinds of data types including PeriodDType, CategoricalDtype, etc.
Is it correct to say that (A) represents all possible data types with 'object' doing the heavy lifting for all the additional datatypes not specified (i.e., including for those in (B))?