The skip_elements function returns a list containing every other element from an input list, starting with the first element. Complete this function t code example
Example: python every other goes to a list
a = [1, 2, 3, 4, 5]
a[1::2]
# returns 2, 4
a[::2]
#returns 1, 3, 5