Glen Knight

NYC Based IT Professional

Python List Basics

Lists Lists are a data structure in Python that is mutable and each element of a list is referred to as an item, and are defined as comma delimited values between square brackets [ ]. Example: sea_creatures = [‘shark’, ‘cuttlefish’, ‘squid’, ‘mantis shrimp’, ‘anemone’] Lists can be compared to ArrayLists in other programming languages, and […]

0 Comments

Read More