print("The cost of paint based on whole gallons is: $", round(paint_costs,2))
The cost of paint based on whole gallons is: $ XXX.XX
How do I omit the space between the $ and amount so that it reads:
The cost of paint based on whole gallons is: $XXX.XX
Is it import.locale
?