如何在主脚本中运行另一个脚本

时间:2016-05-25 02:15:51

标签: python

我不知道如何在我的主Python脚本中运行另一个脚本。例如:

Index.py:

  Category = "math"
  Print (Category)
  Print ("You can use a calculator")
  Print ("What is 43.5 * 7")
  #run calculator.py
  Answer = int(input("What is your answer"))

如何在其中运行我的计算器脚本而无需在索引脚本中编写计算器代码?

2 个答案:

答案 0 :(得分:2)

由于你的其他“脚本”是一个python模块(.py文件),你可以导入你想要运行的函数:

index.py:

from calculator import multiply  # Import multiply function from calculator.py

category = "math"
print(category)
print("You can use a calculator")
print("What is 43.5 * 7")

#run calculator.py
real_answer = multiply(43.5, 7)

answer = int(input("What is your answer"))

calculator.py

def multiply(a, b)
    return a * b

答案 1 :(得分:1)

你需要使用execfile,sintax可以在https://docs.python.org/2/library/functions.html#execfile上找到。例如:

execfile("calculator.py")

如果您使用的是Python 3.x,请使用以下代码:

with open('calculator.py') as calcFile:
    exec(calcFile.read())

PS:您应该考虑使用import语句,因为它更简单实用