Computer Science
State whether the following statement is True or False :
Functions max( ) and min( ) work with all types of nested tuples.
Python Tuples
2 Likes
Answer
False
Answered By
1 Like
Related Questions
State whether the following statement is True or False :
With tuple( ), the argument passed must be sequence type.
State whether the following statement is True or False :
All tuple functions work identically with nested tuples.
Discuss the utility and significance of tuples, briefly.
If a is (1, 2, 3)
- what is the difference (if any) between a * 3 and (a, a, a) ?
- Is a * 3 equivalent to a + a + a ?
- what is the meaning of a[1:1] ?
- what is the difference between a[1:2] and a[1:1] ?