Contact: aviboots(AT)netvision.net.il
41,606 questions
54,269 answers
573 users
import math tpl = (5, 9, 3, 1, 89, 250) tpl = tuple(3 * element for element in tpl) print(tpl) ''' run: (15, 27, 9, 3, 267, 750) '''