У вашего броузера проблема в совместимости с HTML5
In this video, We will learn how to import/extract data from CSV(Comma Separated Value)file to Python
We will use " Breast Cancer dataset" in CSV format to Demonstrate the process
import pandas as pd
Breast cancer =pd.read _csv("path filen_name")
Breast cancer
To see only first few line of DataFrame:-
Breast cancer.head()
check the type of Variable "Breast cancer"
using command type(Breast cancer)