Question: 
Write a function to convert the given string of float type into tuple.


Model's Code:
def float_to_tuple(s):
    return tuple(map(float, s.split(", ")))



Sample Correct Code:
def float_to_tuple(test_str):
  res = tuple(map(float, test_str.split(', ')))
  return (res) 


Asserts:
assert float_to_tuple("1.2, 1.3, 2.3, 2.4, 6.5") == (1.2, 1.3, 2.3, 2.4, 6.5)
assert float_to_tuple("2.3, 2.4, 5.6, 5.4, 8.9") == (2.3, 2.4, 5.6, 5.4, 8.9)
assert float_to_tuple("0.3, 0.5, 7.8, 9.4") == (0.3, 0.5, 7.8, 9.4)


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

Test 894 of 974: 688/894 (76.95749440715883%): success