2. A line of text is read from the input terminal into a stack. Write an program to output the string in the reverse order, each character appearing twice.
(e.g., the string aJb c d e should be changed to ee dd cc bb aa)
(e.g., the string aJb c d e should be changed to ee dd cc bb aa)
# Code def push(stack, x): stack.insert(0, x) # this way top is always at the front def pop(stack): return stack.pop(0) # pops from the front because it is the top l = [4, 5, 6, 7] push(l, 8) # l becomes [8, 4, 5, 6, 7] x = pop(l) print(x) # x is 8