I\'m creating a basic program that will use a GUI to get a price of an item, then take 10% off of the price if the initial price is less than 10, or take 20% off of the pric
this part :
"Your new price is: $"(float(price)
asks python to call this string:
"Your new price is: $"
just like you would a function: function( some_args) which will ALWAYS trigger the error:
function( some_args)
TypeError: 'str' object is not callable