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

Machine Learning-Cross Validation & ROC curve

Another post starts with you beautiful people! Hope you enjoyed my previous post about improving your model performance by  confusion metrix . Today we will continue our performance improvement journey and will learn about Cross Validation (k-fold cross validation) & ROC in Machine Learning. A common practice in data science competitions is to iterate over various models to find a better performing model. However, it becomes difficult to distinguish whether this improvement in score is coming because we are capturing the relationship better or we are just over-fitting the data. To find the right answer of this question, we use cross validation technique. This method helps us to achieve more generalized relationships. What is Cross Validation? Cross Validation is a technique which involves reserving a particular sample of a data set on which we do not train the model. Later, we test the model on this sample before finalizing the model. Here are the steps involved in...

Machine Learning-Decision Trees and Random Forests

Another post starts with you beautiful people! I hope after reading my previous post about  Linear and Logistic Regression   your confidence level is up and you are now ready to move one step ahead in Machine Learning arena. In this post we will be going over Decision Trees and Random Forests . In order for you to understand this exercise completely there is some required reading. I suggests you to please read following blog post before going further- A Must Read! After reading the blog post you should have a basic layman's (or laywoman!) understanding of how decision trees and random forests work.  A quick intro is as below- Decision Trees (DTs) are a non-parametric supervised learning method used for classification and regression. The goal is to create a model that predicts the value of a target variable by learning simple decision rules inferred from the data features . For instance, in the example below, decision trees learn from data to approximate a sin...

Exploring The File Import

Another post starts with you beautiful people! Today we will explore various file import options in Python which I learned from a great learning site- DataCamp . In order to import data into Python, we should first have an idea of what files are in our working directory. We will learn step by step examples as given below- Importing entire text files- In this exercise, we'll be working with the file mobydick.txt [ download here ] It is a text file that contains the opening sentences of Moby Dick, one of the great American novels! Here you'll get experience opening a text file, printing its contents to the shell and, finally, closing it- # Open a file: file file = open('mobydick.txt', mode='r') # Print it print(file.read()) # Check whether file is closed print(file.closed) # Close file file.close() # Check whether file is closed print(file.closed) Importing text files line by line- For large files, we may not want to print all of th...