I work in pycharm and need to upload csv file data from excel. In the file itself, the information is broken down by columns, but pycharm shows it as if everything is in one column. How to proceed?
import numpy as np import matplotlib.pyplot as plt import pandas as pd dataset = pd.read_csv('Data.csv') print(dataset)