import pandas as pd df = pd.read_csv('/kaggle/input/creditcardfraud/creditcard.csv') print('Shape of the dataset:', df.shape) print('\nFirst 5 rows of the dataset:') print(df.head()) print('\nColumn information and data types:') print(df.info()) print('\nDescriptive statistics:') print(df.describe())