Я написал функцию в Python, которая возвращает простую строку на основе 3 параметров, но возвращает кортеж вместо строки.
def my_TAs(test_first_TA, test_second_TA, test_third_TA):
return test_first_TA, test_second_TA, "and", test_third_TA, "are awesome!."
test_first_TA = "Joshua"
test_second_TA = "Jackie"
test_third_TA = "Marguerite"
print(my_TAs(test_first_TA, test_second_TA, test_third_TA))
Вывод:
('Joshua', 'Jackie', 'and', 'Marguerite', 'are awesome!')
Желаемый результат:
"Joshua, Jackie, and Marguerite are awesome!".