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
我怎样才能同时定义每一个,这样我就不会收到“未定义”的消息?
非常感谢
我需要从面积和深度推导出体积
面积和深度是输入,所以不要根据其他两个变量来定义它们。
def calculate_volume(area, depth): return area*depth