Files
homework-6/number_utils.py
2026-04-05 11:42:12 -04:00

6 lines
77 B
Python

#!/usr/bin/python3
# more code for hw
def is_even(n):
return n % 2 == 0