Tuple Flashcards

Every topic from tuple and its functions

1
Q

What is a tuple in Python?

A

A tuple is a sequence data type.

It is a heterogeneous collection of data (can contain different types of elements).

It is immutable, meaning it cannot be changed after creation.

Tuples are denoted by parentheses () and elements are separated by commas.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do you create a tuple in Python?

A

With multiple elements: T = (8, 6, 7)

With a single element: T = (5,) (comma is necessary)

Without parentheses: T = 5, (comma is necessary)

Without a comma: T = (5) is not a tuple, it’s an integer.

String vs Tuple: T = (‘Hello’) is a string, not a tuple.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How does tuple indexing work in Python?

A

Tuples are indexed starting from 0.

Negative indexing starts from -1 (rightmost element).

Example: T = (5, 8, 6, 1, 9)

T[2] returns 6 (positive index).

T[-3] returns 6 (negative index).

T[6] raises an IndexError (out of range).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How do you concatenate two tuples?

A

T1 = (1, 2, 3)
T2 = (4, 5, 6)
T = T1 + T2 # Result: (1, 2, 3, 4, 5, 6)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How do you repeat a tuple?

A

T = (1, 2) * 3 # Result: (1, 2, 1, 2, 1, 2)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do you check if an element is in a tuple?

A

Use the in and not in operators.
T = (5, “India”, 8, 6, 1)
5 in T # True
9 in T # False
9 not in T # True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How does slicing work in tuples?

A

Syntax: Object_name[start : stop : interval]

Defaults:

start: 0

stop: length of tuple (if interval is positive), -1 (if interval is negative)

interval: 1
T = (5, 8, 6, 1, 9)
T[1:4:1] # Result: (8, 6, 1)
T[1:5:2] # Result: (8, 1)
T[4:1:-1] # Result: (9, 1, 6)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What does the len() function do in tuples?

A

Returns the total number of elements in the tuple.
T = (8, 6, ‘Hello’, 9, 1)
len(T) # Result: 5

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What does the tuple() function do?

A

Converts an object (e.g., string, list) into a tuple.
S = “Python”
T = tuple(S) # Result: (‘P’, ‘y’, ‘t’, ‘h’, ‘o’, ‘n’)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What does the count() function do in tuples?

A

Counts the number of occurrences of an element in the tuple.

T = (1, 2, 3, 2, 4, 2, 5)
T.count(2) # Result: 3

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What does the index() function do in tuples?

A

Returns the index of the first occurrence of an element.

T = (1, 2, 3, 2, 4, 2, 5)
T.index(2) # Result: 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What does the sorted() function do in tuples?

A

Returns a new list of sorted elements in ascending order (default).

Does not modify the original tuple.

T = (1, 2, 3, 2, 4, 2, 5)
sorted(T) # Result: [1, 2, 2, 2, 3, 4, 5]
sor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What does the min() function do in tuples?

A

Returns the smallest element in the tuple.

T = (5, 8, 3, 9, 6, 4)
min(T) # Result: 3

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What does the max() function do in tuples?

A

Returns the largest element in the tuple.

T = (5, 8, 3, 9, 6, 4)
max(T) # Result: 9

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What does the sum() function do in tuples?

A

Returns the sum of all elements in the tuple.

T = (5, 8, 3, 9, 6, 4)
sum(T) # Result: 35

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is a nested tuple?

A

A tuple that contains another tuple as an element.

T = (5, (8, 6, 4), 3, 9)
T[1] # Result: (8, 6, 4)
T[1][1] # Result: 6

17
Q

Can a list be an element of a tuple?

A

Yes, a list can be an element of a tuple.

The list inside the tuple is mutable.

T = (5, [8, 6, 4], 3, 9)
T[1][2] = 7 # Result: (5, [8, 6, 7], 3, 9)

18
Q

Write a program to find the maximum and minimum number in a tuple.

A

T = (5, 8, 9, 6, 2, 5)
print(“Tuple is:”, T)
print(“Minimum number:”, min(T))
print(“Maximum number:”, max(T))

19
Q

Write a program to find the mean of numeric values in a tuple.

A

T = eval(input(“Enter a numeric tuple: “))
print(“Tuple is:”, T)
mean = sum(T) / len(T)
print(“Mean of the tuple:”, mean)

20
Q

Write a program to find the index of a number in a tuple using linear search.

A

Write a program to find the index of a number in a tuple using linear search.

21
Q

Write a program to count the frequency of all elements in a tuple.

A

T = (10, 20, 30, 20, 40, 30, 20, 50)
print(“Tuple is:”, T)
Uni = ()
for i in T:
if i not in Uni:
Uni = Uni + (i,)
for i in Uni:
print(i, “:”, T.count(i))