我是学习 Python 和使用 Eclipse + PyDev 的新手。我似乎无法弄清楚为什么我的程序没有运行。
这是我的代码:
def main():
print("Testing")
test1 = float(input("Test1: "))
test2 = float(input("Test2: "))
test3 = float(input("Test3: "))
calculate_cost (test1, test2, test3)
def calculate_cost (test1, test2, test3):
print("Testing")
我假设我在一个或两个函数中遗漏了一些东西以使其正常运行。