Answers for "how to add values to tuple in python"

3

tuple add

a = (1, 2, 3)
b = a + (4, 5, 6)  # (1, 2, 3, 4, 5, 6)
c = b[1:]  # (2, 3, 4, 5, 6)
Posted by: Guest on March-24-2020
0

how to add number in tuple

a = ('2',)
b = 'z'
new = a + (b,)
Posted by: Guest on August-04-2020

Code answers related to "how to add values to tuple in python"

Browse Popular Code Answers by Language