Answers for "append to a tuple"

3

append to a tuple

a = ('tree', 'plant', 'bird')
b = ('ocean', 'fish', 'boat')
# a and b are both tuples

c = a + b
# c is a tuple: ('tree', 'plant', 'bird', 'ocean', 'fish', 'boat')
Posted by: Guest on June-13-2021
1

python append to tuple list

apple = ('fruit', 'apple')
banana = ('fruit', 'banana')
dog = ('animal', 'dog')
# Make a list with these tuples
some_list = [apple, banana, dog]
# Check if it's actually a tuple list
print(some_list)
# Make a tuple to add to list
new_thing = ('animal', 'cat')
# Append it to the list
some_list.append(new_thing)
# Print it out to see if it worked
print(some_list)
Posted by: Guest on July-30-2020
1

how to add strings in tuple in python

First, convert tuple to list by built-in function list().
You can always append item to list object.
Then use another built-in function tuple() to 
convert this list object back to tuple.
You can see new element appended to original tuple representation.

by tutorialspoint.com 

happy coding :D
Posted by: Guest on June-20-2020
0

how to add number in tuple

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

append to tuple pytho

# METHOD 1:
tapel = (1,2,3,4)
tapel.__add__((5,6,7,8)) # -> (1,2,3,4,5,6,7,8)

# METHOD 2:
tapel = list((1,2,3,4))
tapel.append((5,6,7,8))
tapel = tuple(tapel) # -> (1,2,3,4,(5,6,7,8))
Posted by: Guest on March-28-2021

Python Answers by Framework

Browse Popular Code Answers by Language