Question: 
Write a python function to copy a list from a singleton tuple.


Model's Code:
def lcopy(t):
    return list(t)



Sample Correct Code:
def lcopy(xs):
  return xs[:]



Asserts:
assert lcopy([1, 2, 3]) == [1, 2, 3]
assert lcopy([4, 8, 2, 10, 15, 18]) == [4, 8, 2, 10, 15, 18]
assert lcopy([4, 5, 6]) == [4, 5, 6]



Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 847 of 974: 651/847 (76.85950413223141%): success