Question: 
Write a function to create a new tuple from the given string and list.


Model's Code:
def new_tuple(lst, s):
    return tuple(lst) + (s,)



Sample Correct Code:
def new_tuple(test_list, test_str):
  res = tuple(test_list + [test_str])
  return (res) 


Asserts:
assert new_tuple(["WEB", "is"], "best") == ('WEB', 'is', 'best')
assert new_tuple(["We", "are"], "Developers") == ('We', 'are', 'Developers')
assert new_tuple(["Part", "is"], "Wrong") == ('Part', 'is', 'Wrong')


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

Test 788 of 974: 597/788 (75.76142131979695%): success