This content originally appeared on DEV Community and was authored by ourjulybeauty
1. Lists
Lists are created by having characters inside square brackets, separated by commas, with each value inside quotation marks
The code below also shows how to access items within a list
Adding items to a list
using the .append() method
using the + operator
using the .extend() method
using the .insert() method
Removing items from a list
using the .remove() method
using the del
using the .pop() method
using the .clear() method
2. Tuples
Tuples are immutable i.e once created they cannot be changed
But they can be nested inside lists, where they are easily accessible using their index
2. Exercise day 4 code
This content originally appeared on DEV Community and was authored by ourjulybeauty
ourjulybeauty | Sciencx (2021-11-14T09:00:32+00:00) Day 4; Basic Python Collections(Python 30 Day challenge). Retrieved from https://www.scien.cx/2021/11/14/day-4-basic-python-collectionspython-30-day-challenge/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.