Python Lists

Posted by linuxize on Apr 6, 2020 7:21 PM EDT
Linuxize.com; By linuxize
Mail this story
Print this story

Python includes a number of sequential data types that allow you to store collections of data in an organized and efficient way. The basic sequence types are lists, tuples, and range objects.

This article goes through the Python lists. We’ll show you how to create a list, slice and sort a list, add or remove elements from a list and so on.

Python includes a number of sequential data types that allow you to store collections of data in an organized and efficient way. The basic sequence types are lists, tuples, and range objects.

This article goes through the Python lists. We’ll show you how to create a list, slice and sort a list, add or remove elements from a list and so on.

Lists are mutable sequences, which means that they can be changed after creation. Lists are one of the most commonly used data types in Python and are generally used to store collections of items of the same type.

Full Story

  Nav
» Read more about: Groups: Python

« Return to the newswire homepage

This topic does not have any threads posted yet!

You cannot post until you login.