我在 Spyder 上获得所需的输出时遇到问题

I am having issues with getting the desired output on Spyder

密码我运行:

def areatriangle(base, height):
    area = .5 * base * height
    print("Area of the triangle of base",base,"and height",height,"is", area)

我得到的输出:

runfile('C:/Users/Admin/Desktop/Python/spyder/Exercises.py', wdir='C:/Users/Admin/Desktop/Python/spyder')*

(这里是Spyder的维护者) runfile是Spyder用来运行控制台文件的命令。因此,每次您从编辑器 运行 文件时,您都会看到它显示在控制台中,这没有任何问题。

除此之外,您没有看到任何其他结果,因为您没有调用 areatriangle 函数,您只是简单地声明它并且不会产生任何结果。因此,您需要在代码中添加以下内容

def areatriangle(base, height):
    area = .5 * base * height
    print("Area of the triangle of base",base,"and height",height,"is", area)

areatriangle(1, 2)

然后您将看到以下内容