摘要:
1 def is_even(n): 2 return 1 if n%2==0 else 0 3 4 n=int(input()) 5 6 result = is_even(n) 7 print(result)#最后一行不能用return 因为return 只能在函数内部使用。在顶层代码中用retur 阅读全文
摘要:
1 def is_even(n): 2 return 1 if n%2==0 else 0 3 4 n=int(input()) 5 6 result = is_even(n) 7 print(result)#最后一行不能用return 因为return 只能在函数内部使用。在顶层代码中用retur 阅读全文
|