Wednesday, June 16, 2021

Python 3 - refresh part 3

A tuple is a sequence of immutable Python objects. Tuples are sequences, just like lists. The main difference between the tuples and the lists is that the tuples cannot be changed unlike lists. Tuples use parentheses, whereas lists use square brackets.


tup1 = ('physics', 'chemistry', 1997, 2000)

tup2 = (1, 2, 3, 4, 5 )

tup3 = "a", "b", "c", "d"


tup1 = ();


tup1 = (50,)


To access values in tuple, use the square brackets for slicing along with the index or indices to obtain the value available at that index. For example −


tup1 = ('physics', 'chemistry', 1997, 2000)

tup2 = (1, 2, 3, 4, 5, 6, 7 )


print ("tup1[0]: ", tup1[0])

print ("tup2[1:5]: ", tup2[1:5])


Tuples are immutable, which means you cannot update or change the values of tuple elements. You are able to take portions of the existing tuples to create new tuples as the following example demonstrates −


tup1 = (12, 34.56)

tup2 = ('abc', 'xyz')


# Following action is not valid for tuples

# tup1[0] = 100;


# So let's create a new tuple as follows

tup3 = tup1 + tup2

print (tup3)



Removing individual tuple elements is not possible. There is, of course, nothing wrong with putting together another tuple with the undesired elements discarded.

To explicitly remove an entire tuple, just use the del statement


Tuples respond to the + and * operators much like strings; they mean concatenation and repetition here too, except that the result is a new tuple, not a string.

Python Expression

Results

Description

len((1, 2, 3))

3

Length

(1, 2, 3) + (4, 5, 6)

(1, 2, 3, 4, 5, 6)

Concatenation

('Hi!',) * 4

('Hi!', 'Hi!', 'Hi!', 'Hi!')

Repetition

3 in (1, 2, 3)

True

Membership

for x in (1,2,3) : print (x, end = ' ')

1 2 3

Iteration


max(tuple)

Returns item from the tuple with max value


min(tuple)

Returns item from the tuple with min value.


tuple(seq)

Converts a list into tuple.


No comments:

Post a Comment