# Method 1, convert list to tuple: values = ['a', 'b', 'c'] tup = tuple(values) # Method 2: tup = ('a', 'b', 'c')