Tester.py
def go(a): b = a.reverse() return a def main(): a = [1, 1, 4, 3, 4] r = go(a) print(r) main()
What is the output?
Be careful of the whitespace(space,newline) in your answer.