Question: def clean_currency(curr): return float(curr.replace(,, ).replace($, )) # Proving the function works! clean_currency($66,000). Use clean_currency function above to strip out commas and dollar signs from Savings
def clean_currency(curr): return float(curr.replace(",", "").replace("$", "")) # Proving the function works! clean_currency("$66,000"). Use clean_currency function above to strip out commas and dollar signs from Savings ($) column and put into a new column called Savings
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
