import numpy as np
import pandas as pd
narray = np.array([[1,2,3],[3,4,5]])
row_index = [0]
col_index = ['C0','C1']
pd.DataFrame (data = narray, index = col_index, columns = col_index)
ValueError: Shape of passed values is (2, 3), indices imply (2, 2) #Create a dataframe that contains 2 columns and 3 rows using a numpy array, #using numbers of your choice to fill the array: i have changed the columns , the arrays and even the index however i still get this error