Answers for "python how to appendvalue in tuple"

2

how to append value in tuple

a = (3,)
b = list(a)
b.append("Work!")
a = tuple(b)
print(a)
Posted by: Guest on July-25-2021

Code answers related to "python how to appendvalue in tuple"

Browse Popular Code Answers by Language