I need to combine a string along with a list of strings into a tuple so I can use it as a dictionary key. This is going to be in an inner loop so speed is important.
I can't speak for performance, but this is definitely the simplest I can think of:
my_tuple = tuple([my_string] + my_list)