https://online.codingblocks.com/app/player/209779/content/201860/8022/lecture
at 8:21 in this video,
movies_titles=movies_titles[[0,1]]
how is this statement working? (on my pc it gives an error-- KeyError: “None of [Int64Index([0, 1], dtype=‘int64’)] are in the [columns]”)
isnt it supposed to be
movie_titles=movie_titles.iloc[:,0:2] ?