Important Notice:

Course Content
Tuples in Python (Chapter-8) M3-R5
About Lesson

cmp( ):-

                यह पायथन 3 में नही पाया जाता है। पायथन 2 में tuple को compare करने के लिए use होता है। इसमें दोनों tuple समान होते हैं तो इसका रिजल्ट 0 आता है यदि पहला tuple दूसरे tuple से बड़ा है तो इसका रिजल्ट 1 आता है अन्यथा -1 आता है।

tup1=(11,22,33)

tup2=(50,60,70)

tup3=(11,22,33)

 

cmp(tup1,tup2)                    # -1 

cmp(tup1,tup3)                    # 0

cmp(tup2,tup1)                    # 1

 

count():-

                इस method का use किसी tuple में कोई value कितनी बार आयी है यह पता करने के लिए किया जाता है।

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

print(a.count(2))                  # 2

 

len():-

                इस function का use  tuple की length का पता करने के लिए किया जाता है।

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

print(len(a))                           # 9

 

max() & min():-

        इस method का use tuple में से largest तथा lowest item return करने के लिए किया जाता है।

 

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

print(max(a))                        # 5

 

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

print(min(a))                         # 1

 

 sorted():-

इस method का use tuple में item को sort करने के लिए किया जाता है। इस के माध्यम tuple को ascending order में sort कर सकते हैं।

a=(20,30,40,10,50,80,60,70)

print(sorted(a))                                # [10, 20, 30, 40, 50, 60, 70, 80]

 

index() :-

इस method को used किसी object/element का index number find करने के लिए किया जाता है।

a=(20,30,40,10,50,80,60,70)

print(a.index(10))                                                # 3

 

 

sum():-

इस method का use tuple के सभी element जोड़ने के लिए किया जाता है।

a=(20,30,40,10)

print(sum(a))                                        # 100

 

tuple():-

                इसका उपयोग विभिन्न प्रकार की values से tuples बनाने के लिए किया जाता है।

*   a=(“akhilesh”)

print(tuple(a))                         #  (‘a’, ‘k’, ‘h’, ‘i’, ‘l’, ‘e’, ‘s’, ‘h’)

 

*   a=([2,4,6,8])

print(tuple(a))                                       # (2, 4, 6, 8)

 

 

 

cmp( ):-

                It is not found in Python 3. In Python 2, it is used to compare tuples. In this, if both the tuples are equal then its result is 0. If the first tuple is bigger than the second tuple then its result is 1, otherwise -1.

tup1=(11,22,33)

tup2=(50,60,70)

tup3=(11,22,33)

 

cmp(tup1,tup2)                    # -1 

cmp(tup1,tup3)                    # 0

cmp(tup2,tup1)                    # 1

 

count():-

                This method is used to find out how many times a value occurs in a tuple.

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

print(a.count(2))                                              # 2

 

len():-

                This function is used to find the length of a tuple.

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

print(len(a))                                                     # 9

 

max() & min():-

        This method is used to return the largest and lowest item from the tuple.

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

print(max(a))                                                   # 5

 

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

print(min(a))                                                                         # 1

 

sorted():-

This method is used to sort the items in a tuple. Through this the tuple can be sorted in ascending order.

a=(20,30,40,10,50,80,60,70)

print(sorted(a))                                          # [10, 20, 30, 40, 50, 60, 70, 80]

 

index() :-

This method is used to find the index number of an object/element.

a=(20,30,40,10,50,80,60,70)

print(a.index(10))                                # 3

 

sum():-

This method is used to add all the elements of a tuple.

a=(20,30,40,10)

print(sum(a))                           # 100

 

tuple():-

            It is used to create tuples from different types of values.

* a=(“akhilesh”)

print(tuple(a))                  #  (‘a’, ‘k’, ‘h’, ‘i’, ‘l’, ‘e’, ‘s’, ‘h’)

 

a=([2,4,6,8])

print(tuple(a))                          # (2, 4, 6, 8)

error: Content is protected !!