我正在使用Python製作的一個名爲Cobra的API,它的確如此。這是我的代碼:如何在只有python腳本的CMD上顯示.py。
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)
謝謝,Tripleee,但仍然不適合我。我曾嘗試過,但沒有運氣。 –
我也聽說過'os.popen'。這是否與某件事有關,或者我在這裏錯過了什麼? –