Python Programming : write a program in Python.
The data file expense.txt contains a list of expense items. Each line includes the description and the cost, separated by a colon, as car maintenance : $250.87
Write a program that inputs this data file and prints out the total costs. Don't forget to perform necessary string processing and type conversion. Strip the dollar sign before type casting a string to float.