I am doing a simple program in python for my class, and I basically have it down except I can't figure out how to make the dollar sign appear right next to the sum without leaving a space. This is my code:
item1 = input("Enter price of first item: $");
item2 = input("Enter price of second item:$");
item3 = input("Enter price of third item: $");
total = (item1 + item2 + item3);
print("The total of the three items is:$", total);