Impor file CSV menggunakan panda
import pandas as pd
df = pd.read_csv (r'Path where the CSV file is stored\File name.csv')
print (df)
PENGUIN OVERLORD
import pandas as pd
df = pd.read_csv (r'Path where the CSV file is stored\File name.csv')
print (df)
import pandas as pd
df = pd.read_csv (r'Path where the CSV file is stored\File name.csv')
print (df)
df = pd.read_csv('data.csv')
import pandas as pd
df = pd.read_csv("file path.csv")
you should be in the same dir as .py file
df = pd.read_csv('your_file_name.csv')
df = pd.read_csv("name.csv")