私はコーディングが新しく、浮動小数点の使い方はわかりません。これまで私は 'フロート'オブジェクトを呼び出し続けます。
TypeError, 'float' object is not callable.
私のコード:
def problem1_7():
b1 = input("Enter the length of one of your bases: ")
b2 = input("Enter the length of one of your bases: ")
h = input("Enter the height: ")
area = (1/2)(b1+b2)*h
print("The area of a trapezoid with bases",b1,"and",b2,"and height ",h,"is",area)
「(1/2)(b1 + b2)* h」は何の操作をしていますか? –
真剣に? CSSはどこにありますか? –
また、 'b1'、' b2'、 'h'はすべて文字列になります。フロートとして扱う前に、それらを 'float()'でラップする必要があります。 –