Contact: aviboots(AT)netvision.net.il
39,940 questions
51,877 answers
573 users
_str = 'python' lst = ['c', 'c++', 'c#'] tpl = (_str,) + tuple(lst) print(tpl) ''' run: ('python', 'c', 'c++', 'c#') '''