Run
# Take a set of elements mySet = {'apple', 'banana', 'cherry'} # Convert set to tuple output = tuple(mySet) print(f'Tuple : {output}')
Output