Contact: aviboots(AT)netvision.net.il
39,872 questions
51,795 answers
573 users
tpl = ('5', '9', '3', '1', '89', '250') tuple_of_integers = tuple(int(item) for item in tpl) print(tuple_of_integers) ''' run: (5, 9, 3, 1, 89, 250) '''