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