Answers for "append item to tuple in python"

2

appending items to a tuple python

tuple_item = ("Grepper")
#print(tuple_item)
converted = list(tuple_item)
#print(type(converted))
converted.append(" is amazing")
convert_to_tur = tuple(converted)
print(convert_to_tur)
Posted by: Guest on July-26-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

Python Answers by Framework

Browse Popular Code Answers by Language