Computer Science
Fill in the blanks:
Tuples are _________ data types of Python.
Python Tuples
2 Likes
Answer
immutable
Answered By
1 Like
Related Questions
What is the output of the following code?
t = (10, 20, 30, 40, 50, 60, 70) print(t[5:-1])
- Blank output( )
- (10, 20, 30, 40, 50)
- (10, 30, 50, 70)
- (10, 20, 30, 40, 50, 60, 70)
Which of the below given functions cannot be used with nested tuples ?
- index( )
- count( )
- max( )
- sum( )
Fill in the blanks:
A tuple can store values of _________ data types.
Fill in the blanks:
The _________ operator used with two tuples, gives a concatenated tuple.