我在 Spyder 上获得所需输出时遇到问题
Posted
技术标签:
【中文标题】我在 Spyder 上获得所需输出时遇到问题【英文标题】:I am having issues with getting the desired output on Spyder 【发布时间】:2022-01-13 19:11:54 【问题描述】:我运行的代码:
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')*
【问题讨论】:
您面临什么样的问题或错误。你能分享一些图片吗? 我编辑了问题 【参考方案1】:(这里是 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)
然后你会看到以下内容
【讨论】:
好的,谢谢你 没问题,希望您喜欢使用 Spyder。以上是关于我在 Spyder 上获得所需输出时遇到问题的主要内容,如果未能解决你的问题,请参考以下文章