标签: python-3.x
我有一个带python命令的文本文件。如何编写脚本来运行该文本文件并执行每一行,然后再点击另一行。
答案 0 :(得分:0)
逐行读取文本文件,然后使用os.system(“<command_from_file>”)。使用此代码可以做到这一点。
os.system(“<command_from_file>”)
f = open("demofile.txt", "r") for x in f: os.system(x)