我正在创建一个基本程序,它将使用 GUI 来获取商品的价格,然后如果初始价格低于 10,则减价 10%,如果初始价格为,则减价 20%大于十:
import easygui
price=easygui.enterbox("What is the price of the item?")
if float(price) < 10:
easygui.msgbox("Your new price is: $"(float(price) * 0.1))
elif float(price) > 10:
easygui.msgbox("Your new price is: $"(float(price) * 0.2))
我不断收到此错误:
easygui.msgbox("Your new price is: $"(float(price) * 0.1))
TypeError: 'str' object is not callable`
为什么我会收到此错误?