This is some of my python code:
my_fancy_variable = input('Choose a color to paint the wall:\n')
if my_fancy_variable == 'red':
print(('Cost of purchasing red paint:\n$'),math.ceil(paint_needed) * 35)
elif my_fancy_variable == 'blue':
print(('Cost of purchasing blue paint:\n$'),math.ceil(paint_needed) * 25)
elif my_fancy_variable == 'green':
print(('Cost of purchasing green paint:\n$'),math.ceil(paint_needed) * 23)
I am just trying to get rid of the space between the "$" and "105.
There's more code but basically I'll get a result of:
Cost of purchasing red paint: $ 105
Thanks!