要求, 編寫一個函數prime(n), 判斷輸入的正整數n(n<1000)是否質數.
函數的格式為:
def 函數名(參數):
....
return 返回值
一行, 一個正整數n
如果n是質數, 輸出 True
否則 n不是質數, 輸出 False
19
True