# Even or odd function def even_odd_function(a ="number" ): if int(a) % 2 > 0: print("odd") else: print("even") even_odd_function("15")