正如话题所说..
我想使用文件
indata.txt:
f=lambda x,y:-2*x*y
xa=0
xb=2
A=2
n=18
进入我的大项目:
from math import *
'''Function which calculates the d.e. using runge-kuttas formula'''
def runge(f,xa,xb,A,n):
.....
indata=open("indata.txt","r")
runge(f,xa,xb,A,n)
indata.close()
所以我的问题是: 如何使用文本文件indata.txt中的变量作为更大程序的输入?