I have Python 3.6.8 installed on my computer. I am performing data analysis on a public dataset. Pandas is correctly able to read the dataset but when I do slicing on the dataframe, I get TypeError: '(slice(None, None, None), slice(None, None, None))' is an invalid key. My code is as follows:
import pandas as pd
data = pd.read_csv('netflix_titles.csv')
data[:,:]
My computer specs are:
CPU: Intel i5-6200U
RAM: 12.0 GB
OS: Windows 10
OS build: 19042.746
System type: 64-bit operating system, x64-based processor
Someone help please!