>>> import sys
def prime(n):
i=2
isp=True;
while(i<n):
if(n%i==0):
isp=False
break
n/=i
i+=1
if(n==1):
isp=False
return isp
while(True)
x=input("num=")
if x=="exit"
sys.exit()
print(prime(int(x))))
SyntaxError: multiple statements found while compiling a single statement
爲什麼這個代碼總是「語法錯誤:在編譯一個語句中找到多條語句」在Python
3.5.2語法錯誤:多個語句中找到在編譯一個語句