#5 Python Tutorial for Beginners | List in Python

    10
    46



    Python 3 documentation : https://goo.gl/uSrPR8

    Python Tutorial to learn Python programming with examples
    Complete Python Tutorial for Beginners Playlist : https://www.youtube.com/watch?v=hEgO047GxaQ&t=0s&index=2&list=PLsyeobzWxl7poL9JTVyndKe62ieoN-MZ3
    Python Tutorial in Hindi : https://www.youtube.com/watch?v=JNbup20svwU&list=PLk_Jw3TebqxD7JYo0vnnFvVCEv5hON_ew

    In this video we will see :
    – Working with List
    – What is list
    – How to use list
    – Assign multiple values to variable
    – Printing value of list
    – Print value of list by index number
    – String list
    – List of different types of data types
    – Creating list with list : nested list
    – append function
    – insert function
    – remove function
    – pop function
    – delete function
    – extend function
    – Inbuilt functions of List : min, max, sum
    – sort function

    Github :- https://github.com/navinreddy20/Python-

    Editing Monitors :
    https://amzn.to/2RfKWgL
    https://amzn.to/2Q665JW
    https://amzn.to/2OUP21a.

    Editing Laptop :
    ASUS ROG Strix – (new version) https://amzn.to/2RhumwO

    Camera : https://amzn.to/2OR56AV
    lens : https://amzn.to/2JihtQo

    Mics
    https://amzn.to/2RlIe9F
    https://amzn.to/2yDkx5F

    Check out our website: http://www.telusko.com

    Subscribe to our other channel:
    Navin Reddy : https://www.youtube.com/channel/UCxmkk8bMSOF-UBF43z-pdGQ?sub_confirmation=1
    Telusko Hindi :
    https://www.youtube.com/channel/UCitzw4ROeTVGRRLnCPws-cw?sub_confirmation=1

    Donation:
    PayPal Id : navinreddy20
    Patreon : navinreddy20
    http://www.telusko.com/contactus

    Instagram: https://www.instagram.com/navinreddyofficial

    Facebook: https://www.facebook.com/navin.reddy20

    Twitter : https://twitter.com/navinreddy20

    More Learning :

    Java :- https://bit.ly/3x6rr0N
    Python :- https://bit.ly/3GRc7JX
    Django :- https://bit.ly/3MmoJK6

    JavaScript :- https://bit.ly/3tiAlHo
    Node JS :- https://bit.ly/3GT4liq

    Rest Api :-https://bit.ly/3MjhZwt
    Servlet :- https://bit.ly/3Q7eA7k
    Spring Framework :- https://bit.ly/3xi7buh
    Design Patterns in Java :- https://bit.ly/3MocXiq
    Docker :- https://bit.ly/3xjWzLA

    Blockchain Tutorial :- https://bit.ly/3NSbOkc
    The Web3 Show:- https://bit.ly/3MmqzL0
    Corda Tutorial:- https://bit.ly/3thbUKa
    Hyperledger Fabric :- https://bit.ly/38RZCRB

    NoSQL Tutorial :- https://bit.ly/3aJpRuc
    Mysql Tutorial :- https://bit.ly/3thpr4L

    Data Structures using Java :- https://bit.ly/3MuJa7S
    Git Tutorial :- https://bit.ly/3NXyCPu

    source

    Previous articleTop 50 Ansible Interview Questions and Answers 2020 | DevOps Tools | DevOps Training | Edureka
    Next articleCara Instal VMWare Terbaru 2019 Full Version + Crack

    46 COMMENTS

    1. Tq so much sir for your valuable teaching…ā£ļøā£ļøā£ļø Ur giving me confidence on programming ā£ļøā£ļø i don't have any programming skills but now I had a confidence… Bcz of your way of teaching ā£ļøā£ļøšŸ™ŒšŸ™Œ

    2. i have one doubt in all the operations for example you took
      >>> nums.append(45)

      >>> nums

      [25, 12, 36, 95, 14, 45]

      now my doubt is i tried appending multiple values for example
      >>> nums.append(45,56)

      Traceback (most recent call last):

      File "<pyshell#17>", line 1, in <module>

      nums.append(45,56)

      TypeError: list.append() takes exactly one argument (2 given)

      this was the error came i am ok with it but my doubt is if i want to insert multiple values means we should add every time single,single for each value or is there another way to add.

    3. can anyone explain the following question:
      When I am using this command, nums.insert(-1,11), the number 11 is being added not in the place of index number -1 but instead at the place of index number -2. I checked the value on index number -1 using this operation nums[-1] and it is correctly showing the value at that index number. Is this how python works or am I doing something wrong? I would really like someone answering my query.
      ☺

    4. sir!! i just got an doubt near 9:51
      sir in my #pycharm when i gave the commands like min, max, sum ……
      it gives me as
      <built-in function min>
      <built-in function max>
      <built-in function sum>
      instead of values sir

      and also incase of pop() operation the output, it shows the nums (which have taken) without the poped value.. instead of poped value which is present in nums()