adding number utils

This commit is contained in:
2026-04-05 11:42:12 -04:00
parent f57addc619
commit c563eabec2

5
number_utils.py Normal file
View File

@@ -0,0 +1,5 @@
#!/usr/bin/python3
# more code for hw
def is_even(n):
return n % 2 == 0