9 lines
115 B
Python
9 lines
115 B
Python
#!/usr/bin/python3
|
|
|
|
# more code for hw
|
|
def is_even(n):
|
|
return n % 2 == 0
|
|
|
|
def is_odd(n):
|
|
return n % 2 != 0
|