编写一个Python函数 check_number,接受一个整数参数 n,并根据以下条件输出相应的消息:如果 n 是正数,输出 'Positive'. 如果 n 是负数,输出 'Negative'. 如果 n 是零,输出 'Zero'.
执行prompt