I have this function
def one():
item1 = "one"
item2 = "two"
result = item1, item2
return result
print(one())
the output of this funciotn is in format tuple, like this
('one', 'two')
What can I do if I need the output not in tuple, so in the following format
one, two
Can someone help? Thanks