• 07 December

    Python List append()

    In this tutorial, we will see about Python List‘s append method.Python List append is used to add single element to end of the list. Let’s understand about basic of python list first. Python List is nothing but the collection of elements. You can add any data type to the list. You can create simple list […]

  • 07 December

    Python List pop()

    In this tutorial, we will see about Python List‘s pop method.Python List pop method is used to remove and return the element at specified index. Python List insert syntax [crayon-6622e509b4e71915338438/] here list1 is object of list. Python List pop example You can simply use pop method to remove and return element at given index.If you […]

  • 07 December

    Python List reverse()

    In this tutorial, we will see about Python List‘s reverse method.Python List reverse method is used to reverse the list. Python List reverse example You can simply call reverse method to reverse the list. Let’s understand this with the help of simple example. [crayon-6622e509b5791874702734/] Output: listOfItems: [‘Clock’, ‘Bed’, ‘Fan’, ‘Table’] listOfItems in reversed order: [‘Table’, […]

  • 07 December

    Python List remove()

    In this tutorial, we will see about Python List‘s remove method.Python List remove method is used to remove passed element from the list.It will remove first matching element from the list. Python List remove syntax [crayon-6622e509b5930238713096/] here list1 is object of list. Python List remove example You can simply call remove method to delete an […]

  • 07 December

    Python List sort()

    In this tutorial, we will see about Python List‘s sort method.Python List sort method is used to sort the list either in ascending or descending order. Python List sort syntax [crayon-6622e509b613f470664012/] here list1 is object of list.As you can see key and reverse are optional parameters. Python List sort example You can simply call remove […]

  • 07 December

    Python List insert()

    In this tutorial, we will see about Python List‘s insert method.Python List insert method is used to insert element to the specified index in the list. Python List insert syntax [crayon-6622e509b6d78503223863/] here list1 is object of list. list1.insert(1, ‘hello’): This code will add ‘hello’ string to 1st index of list1.Please note that Python index starts […]

  • 07 December

    Python List index()

    In this tutorial, we will see about Python List‘s index method.Python List index method is used to find index of element in the list Python List index example You can simply use index method to find index of the element in the list. If there are multiple occurences of element, then it will return first […]

  • 07 December

    Python List count()

    In this tutorial, we will see about Python List‘s count method.Python List count method is used to count a number of instances of the element in the list. Python List count example You can simply use count method to find number of occurrences of element in the list. Let’s understand this with the help of […]

  • 07 December

    Python List extend()

    In this tutorial, we will see about Python List‘s extend method.Python List extend is used to add all items of iterable to end of the list. Let’s understand about basic of python list first. Python List is nothing but the collection of elements. You can add any data type to the list. You can create […]