Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
基本的に、面積と深さからボリュームを導出する必要があります(明らかに)。私は初心者なので、ここで何をすべきかわかりません。
だから私の問題は:
depth = volume / area volume = area * depth area = volume / depth
「未定義」メッセージが表示されないように、これらを同時に定義するにはどうすればよいですか?
どうもありがとう
面積と深さから体積を導き出す必要があります
面積と深さは入力であるため、他の 2 つの変数に関して定義しないでください。
def calculate_volume(area, depth): return area*depth