movie_shape = movie_df.shape
num_row = movie_shape[0]
num_column = movie_shape[1]
print('{} rows and {} columns'.format(num_row, num_column))