Answers for "add tuple to set python"

1

set and tuple in python

#Turples 
#are odered not to be changable Turples and are Written under perenthisis
this_tuple = ("apple", "banana", "cherry", "apple", "cherry")
print(this_tuple)
#Set
#are odered to be changable and Sets are written with curly brackets.
this_set = {"apple", "banana", "cherry", "apple"}
print(this_set)
Posted by: Guest on June-29-2021
0

add values to tuple python

# just add a comma (,) after the value you want to add to the tuple.
my_tuple = (1,2,3,4,5)
my_tuple += 6,
my_tuple += 'hi',
print(my_tuple)

>>> (1, 2, 3, 4, 5, 6, 'hi')
Posted by: Guest on October-19-2021

Python Answers by Framework

Browse Popular Code Answers by Language