Important Notice:

Course Content
List Manipulation in Python (Chapter-7) M3-R5
About Lesson

11. clear():-

     इस method का use लिस्ट में से सभी element को remove करने के लिए किया जाता है। यह del a[:] के बराबर है।

a=[50,20,30,15,65,79,35]

a.clear()

print(a)                                # [ ]

12. max() & min():-

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

a=[50,20,30,15,65,79,35]

print(max(a))                                        # 79

a=[50,20,30,15,65,79,35]

print(min(a))                                         # 15

13. index():-

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

a=[10,30,20]

b=a.index(30)

print(b)                                   # 1

14. sum():-

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

a=[10,20,30]

print(sum(a))                           # 60

 

11. clear():-

     This method is used to remove all the elements from the list. This is equivalent to del a[:] .

a=[50,20,30,15,65,79,35]

a.clear()

print(a)                                    # [ ]

12. max() & min():-

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

a=[50,20,30,15,65,79,35]

print(max(a))                                             # 79

a=[50,20,30,15,65,79,35]

print(min(a))                                              # 15

13. index():-

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

a=[10,30,20]

b=a.index(30)

print(b)                                          # 1

14. sum():-

     This method is used to add all the elements of the list.

a=[10,20,30]

print(sum(a))                                 # 60

 

error: Content is protected !!