#!/usr/bin/python?
def?偶數(n):
如果?n%2==0:
print("偶數?:)")
回歸?(n,?真實)
否則:
print("奇數?:(")
回歸?(n,?假)
a =偶數(6)
打印(壹份)
b =偶數(7)
打印(b)