Tag: Python basics

  • How to perform operations on lists in Python

    Lists are an essential component of many Python programs. Weather you are creating a list of people who are in an office room, or you are working on data for a machine learning program, you will eventually need to use and work with a list data structure to manage your data. Python provides a flexible…

  • String manipulation in Python

    by

    in

    Strings are central and important components in any programming language and they are needed in almost any type of application (commercial, scientific, medical, etc..). Think of all things you can store in a String such as names, addresses, communication data and much more. Therefore, it is important to get to know how to use and…