Skip to main content

Python Basics- Lists

List is one of the most important data structure in Python. you can find details here -  data structure in Python

In this tutorial we will see some useful operations-creating/updating/removing a list that occurs in a life of data scientist.

Store the values 'python', 'c', and 'java' in a list. Print each of these values out, using their position in the list.


Here we can also use print(myList[0],myList[1],myList[2]) in a line

Note: The indexing starts here with 0 not from the 1 from left to right and from right to left it starts with -1.


Working List:-
  • Make a list that includes four careers, such as 'programmer' and 'truck driver'.
  • Use the list.index() function to find the index of one career in your list.
  • Use the in function to show that this career is in your list.
  • Use the append() function to add a new career to your list.
  • Use the insert() function to add a new career at the beginning of the list.
  • Use a loop to show all the careers in your list.


Ordered Working List:-

Start with the list you created in Working List.
  • You are going to print out the list in a number of different orders.
  • Each time you print the list, use a for loop rather than printing the raw list.
  • Print a message each time telling us what order we should see the list in.
  • Print the list in its original order.
  • Print the list in alphabetical order.
  • Print the list in reverse alphabetical order.
  • Print the list in the reverse order from what it started.
  • Permanently sort the list in alphabetical order, and then print it out.
  • Permanently sort the list in reverse alphabetical order, and then print it out.


Ordered Numbers:-

  • Make a list of 5 numbers, in a random order.
  • You are going to print out the list in a number of different orders.
  • Each time you print the list, use a for loop rather than printing the raw list.
  • Print a message each time telling us what order we should see the list in.
  • Print the numbers in the original order.
  • Print the numbers in increasing order.
  • Print the numbers in decreasing order.
  • Print the numbers in the reverse order from how they started.
  • Permanently sort the numbers in increasing order, and then print them out.
  • Permanently sort the numbers in decreasing order, and then print them out.


Getting List Length:-




So keep practicing by your own with above examples in your notebook and comment if you face any issue.

Comments

  1. Nice Explanation About Python-Lists .Good Information for Data Aspirants.
    Want to Learn or Looking for Training on Python, Data Science, Machine Learning
    Please Visit Codegnana IT Solutions In Vijayawada.
    Data Science Training in Vijayawada

    ReplyDelete
  2. Hi, I read your whole blog. This is very nice. Good to know about the career in Python Training & Certification. We are also providing various Python Training , anyone interested can Python Courses for making their career in this field .

    ReplyDelete
  3. Excellent post. You have shared some wonderful tips. I completely agree with you that it is important for any blogger to help their visitors. Once your visitors find value in your content, they will come back for more What is the Python



    ReplyDelete
  4. Thank you for sharing an amazing & wonderful blog. This content is very useful, informative and valuable in order to enhance knowledge. Keep sharing this type of content with us & keep updating us with new blogs. Apart from this, if anyone who wants to join the Python Base training institute in Delhi, can contact 9311002620 or visit our website-
    https://www.htsindia.com/Courses/python/python-training-institute-in-delhi

    ReplyDelete
  5. I loved your blog post on how to learn data science using Python. I'm really impressed that you've been able to find the time to write blog posts while still working a full-time job. It's really inspiring to see that you're using a passion to help others learn, too.
    Learn .NET

    ReplyDelete
  6. Thankyou for such amazing article about python. Open the doors of career from python course in Greater Noida

    ReplyDelete
  7. APTRON Solutions Noida is the go-to training institute for Python Training in Noida. Our courses are designed to equip students with the skills and knowledge needed to succeed in today's technology-driven world. With our expert trainers, state-of-the-art facilities, and comprehensive training programs, you can be sure that you're getting the best training available. Don't hesitate to contact us today to learn more about our Python training courses.

    ReplyDelete
  8. Enroll in our Python Course in Noida at APTRON Solutions NOIDA and take the first step towards a rewarding career in programming. Whether you aspire to be a Python developer, data analyst, or web developer, our comprehensive course will equip you with the necessary skills and knowledge. Don't miss this opportunity to learn from the best in the industry. Contact us today to know more about our Python course and kickstart your journey to success.

    ReplyDelete
  9. I recently came across your blog post about Python training in Noida, and I must say it's a fantastic resource for individuals looking to learn Python in the region.

    ReplyDelete
  10. This comment has been removed by the author.

    ReplyDelete
  11. The blog was super informative and easy to understand. I really appreciate the way you have informed us about the Python Training in Noida.

    ReplyDelete
  12. Are you ready to unlock the full potential of Python programming? Look no further! APTRON's Python Training Course in Gurgaon is your gateway to mastering the most versatile and in-demand programming language today. Whether you're a beginner or an experienced programmer, our comprehensive course is designed to cater to all skill levels, providing you with the knowledge and expertise you need to excel in the world of Python.

    ReplyDelete
  13. Flexibility is another key feature of our CCNA Training Course in Noida. We offer both weekday and weekend batches to accommodate your schedule. Whether you are a student or a working professional, we have a schedule that suits your needs. Moreover, our training center is equipped with the latest networking equipment, allowing you to gain practical experience with the same tools and technologies used in the industry.

    ReplyDelete
  14. APTRON's Python Training Course in Gurgaon and unlock the vast potential of this versatile programming language. Our trainers will guide you through the learning process, ensuring that you become proficient in Python and ready to tackle real-world challenges. Enroll today and take the first step towards a successful career in Python development!

    ReplyDelete
  15. If you're aspiring to become a data scientist, APTRON Noida should be your first choice. Our Data Science Training in Noida program is designed to equip you with the skills and knowledge required to thrive in this data-driven era. Our Data Science Training in APTRON Noida, focusing on what sets us apart from the competition.

    ReplyDelete
  16. Thank you for providing this insightful information about "DATA SCIENCE" and how it relates to Software development in Chennai. I am better able to understand this dynamic field thanks to you.

    ReplyDelete

Post a Comment

Popular posts from this blog

How to deploy your ML model as Fast API?

Another post starts with you beautiful people! Thank you all for showing so much interests in my last posts about object detection and recognition using YOLOv4. I was very happy to see many aspiring data scientists have learnt from my past three posts about using YOLOv4. Today I am going to share you all a new skill to learn. Most of you have seen my post about  deploying and consuming ML models as Flask API   where we have learnt to deploy and consume a keras model with Flask API  . In this post you are going to learn a new framework-  FastAPI to deploy your model as Rest API. After completing this post you will have a new industry standard skill. What is FastAPI? FastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.6+ based on standard Python type hints. It is easy to learn, fast to code and ready for production . Yes, you heard it right! Flask is not meant to be used in production but with FastAPI you can use you...

Learn the fastest way to build data apps

Another post starts with you beautiful people! I hope you have enjoyed and learned something new from my previous three posts about machine learning model deployment. In one post we have learned  How to deploy a model as FastAPI?  I n the second post, we have learned  How to deploy a deep learning model as RestAPI ? and in the third post, we have also learned  How to scale your deep learning model API?   If you are following my blog posts, you have seen how easily you have transit yourselves from aspiring to a mature data scientist. In this new post, I am going to share a new framework-  Streamlit which will help you to easily create a beautiful app with Python only. I will show here how had I used the Streamlit framework to create an app for my YOLOv3 custom model. What is Streamlit? Streamlit’s open-source app framework is the easiest way for data scientists and machine learning engineers to create beautiful, performant apps in only a few hours!...

How can I make a simple ChatBot?

Another post starts with you beautiful people! It has been a long time of posting a new post. But my friends in this period I was not sitting  where I got a chance to work with chatbot and classification related machine learning problem. So in this post I am going to share all about chatbot- from where I have learned? What I have learned? And how can you build your first bot? Quite interesting right! Chatbot is a program that can conduct an intelligent conversation based on user's input. Since chatbot is a new thing to me also, I first searched- is there any Python library available to start with this? And like always Python has helped me this time also. There is a Python library available with name as  ChatterBot   which is nothing but a machine learning conversational dialog engine. And yes that is all I want to start my learning because I always prefer inbuilt Python library to start my learning journey and once I learn this then only I move ahead for another...