我正在开发一个使用 Python 制作的名为 Cobra 的 API,它的功能与 Python 完全一样。这是我的代码:
import os
x = 1
print("Cobra Programming Language 3.3.2")
print("\n\nThe new version of Python programming, but with an all new editor!")
while x == 1:
code = input("\n\nEnter your code below:\n\n")
f = open("C:/temp-cobra-code.py", "w")
m = code
f.write(m)
f.close()
os.system("cd\\")
os.system("python temp-cobra-code.py")
print("\n\n\n**********RELAUNCHING...**********\n\n")
我的问题是我似乎无法在 Windows 上启动 CMD 来显示用户代码的结果。难道我做错了什么?(我正在使用 Python 3.3.2)