myNum=eval(input("請輸入一個數字:")) if myNum % 2 ==0: print("{0}是一個偶數".format(myNum)) else: print("{0}是一個奇數".format(myNum))