使用输入

时间:2017-01-10 16:27:01

标签: python file

这是我到目前为止的代码:

enter image description here

如何使用此方法或类似方法打开此程序打开另一个python文件(您必须从变量中打开它)?

1 个答案:

答案 0 :(得分:0)

您可以使用exec函数来执行外部脚本

file = "test.py"
exec(open(file).read())

你明白了,

File Opened!