Given a list lst, write a 'for' loop that replaces each element of lst with alternating 0's and 1's, starting with 0. For example, if lst is [5, 3, 7, 0], it should become [0, 1, 0, 1], and if lst is [1, 2, 3], it should become [0, 1, 0] *