------
## 最终结论
```python
def find_Volume(base, height, length):
    area = 0.5 * base * height
    volume = area * length
    return volume
```