tuplex = ("tuple",False ,3.2 , 1)
print(tuplex)
numbericaltuplex = (4, 6, 2, 8, 3, 1)
newtuplex = numbericaltuplex + (9,)
print(newtuplex)
tuple1 = (50, 10, 60, 70, 50)
print(tuple1.count(50))
mytuple = (2, 4, 3, 5, 4, 6, 7, 8, 6, 1)
myslice = mytuple[3:5]
print(myslice)
To embed this project on your website, copy the following code and paste it into your website's HTML: