Answers for "how to add a element in tuple in python"

0

add one element to tuple python

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

Code answers related to "how to add a element in tuple in python"

Browse Popular Code Answers by Language