import pandas as pd
# Load the CSV file into a Pandas DataFrame
df = pd.read_csv('payout-export.csv')
print(df)
import pandas as pd
# Read the CSV file into a pandas DataFrame
df = pd.read_csv('payout-export.csv')
# Select the 'Charges' column
charges_column = df['Charges']
# Print the 'Charges' column
print(charges_column)
import pandas as pd
# Read the CSV file into a pandas DataFrame
df = pd.read_csv('payout-export.csv')
# Calculate the total of the 'Charges' column
total_charges = df['Charges'].sum()
# Print the total charges
print('Total Charges:', total_charges)
import pandas as pd
# Read the CSV file into a pandas DataFrame
df = pd.read_csv('payout-export.csv')
# Select the 'Fees' column
fees_column = df['Fees']
# Print the 'Fees' column
print(fees_column)
import pandas as pd
# Read the CSV file into a pandas DataFrame
df = pd.read_csv('payout-export.csv')
# Calculate the total of the 'Fees' column
total_fees = df['Fees'].sum()
# Print the total Fees
print('Total Fees:', total_fees)
import pandas as pd
# Read the CSV file into a pandas DataFrame
df = pd.read_csv('payout-export.csv')
total_charges = df['Charges'].sum()
total_fees = df['Fees'].sum()
print('Total Amount:', '$', total_charges - total_fees)