1. df = pd.DataFrame([["A", 12], ["B", 15], ["C", 19]], columns=["列1", "列2"])

    返回行列数:df.shape # 返回一个元组tuple
    返回列数:df.shape[1] # 输出 2
    返回行数:df.shape[0] 或 len(df) 输出 3
    返回列名:df.columns # 返回index对象,转list:list(df.columns)