NAME ANY FOUR FUNCTIONS WHICH ARE APPLICABLE ON LIST BUT NOT ON TUPLE.
Answers
Answered by
1
Answer:
please define your questions
Answered by
1
Answer:
- 1 cmp(tuple1, tuple2) Compares elements of both tuples.
- 2 len(tuple) Gives the total length of the tuple.
- 3 max(tuple) Returns item from the tuple with max value.
- 4 min(tuple) Returns item from the tuple with min value.
Explanation:
- hope it helps you
Similar questions