# Write a function that gets a number and # determines if the number is even or odd. # The program should return "odd" if the number is odd, # and "even" if the number is even. Hint: use modulus! def odd_or_even(number): print(odd_or_even(3)) print(odd_or_even(-3)) print(odd_or_even(2)) print(odd_or_even(2.0)) print(odd_or_even(0))