我试图四处寻找答案,但是这里的问题似乎很高级(我是 Python 新手),或者是因为重新定义了我在脚本中无法捕捉到的含义。这是代码-
a = float(input("Enter the length(in inches)"))
b = float(input("Enter the width(in inches)"))
print ()
print ("The area of your shape is: "(a*b))
我收到错误TypeError: 'str' object is not callable。
这是一个简单的脚本,我知道,但它正在进行中。