当n为10时,运行下列Python程序后的结果是?( )
>def fn(num):if num%2== 0:return Falseelse:return Truen=int(input("请输入一个正整数:")print(fn(n))
True
False
出错不能运行
None