I have the following tuple of tuples:
my_choices=( (\'1\',\'first choice\'), (\'2\',\'second choice\'), (\'3\',\'third choice\') )
Alternatively, use the tuple concatenation
i.e.
final_choices = (another_choice,) + my_choices