Why in this program print (None) at the end of output?
def skip_elements(elements):
for index, item in enumerate(elements):
if index % 2 != 1:
print(item, end=(" "))
print(skip_elements(["a", "b", "c", "d", "e", "f", "g"]))
print(skip_elements(['Orange', 'Pineapple', 'Strawberry', 'Kiwi', 'Peach']))