Question: 
Write a function to convert a list to a tuple.


Model's Code:
def list_tuple(lst):
    return tuple(lst)



Sample Correct Code:
def list_tuple(listx):
  tuplex = tuple(listx)
  return tuplex


Asserts:
assert list_tuple([5, 10, 7, 4, 15, 3])==(5, 10, 7, 4, 15, 3)
assert list_tuple([2, 4, 5, 6, 2, 3, 4, 4, 7])==(2, 4, 5, 6, 2, 3, 4, 4, 7)
assert list_tuple([58,44,56])==(58,44,56)


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

Test 587 of 974: 436/587 (74.27597955706985%): success