import os
while 1:
print("Press 1 If Do u want to Start Over every step from Begning.")
print("Press 2 If u want to resume.")
Be_O_Res=input("************************Enter your choice.************************\n")
if(Be_O_Res=='1'):
os.system("script logfile.txt")
break
elif(Be_O_Res=='2'):
os.system("script -a logfile.txt")
break
else:
print("Sorry!!! Please enter a valid Choice.")
os.system("python3 main.py")
我要实现的目标是在进入脚本模式后运行os.system("python3 main.py")
命令,以便可以将执行main.py
功能时在终端中可见的所有内容记录到日志文件中。