9951 explained code solutions for 126 technologies


pythonHow to extend tuple


extended = (1, 2, 3) + (4,)ctrl + c
extended

variable will contain extended tuple

(1, 2, 3)

original tuple to extend

(4,)

single-value tuple to add to original tuple