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