2. DataFrame Two-dimensional, added columns to Series. df=pd.DataFrame([[1,2,3],[4,5,6],[7,8,9]],index=['one','two','three'],columns=['a','b','c']) df >>>abc one123 two456 three789 df.values >>>array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]) df.index >>>Index(['one', 'two', 'three'], dtype='object') df.columns >>>Index(['a', 'b', 'c'], dtype='object') - Create DataFrame with list data=[['1000', 'Steve'..