Skip to main content

How to delete an item from a list

So... we  made a list of names called, by the way, names (this is the name of the list, the label, the object is the list, while names is just the label, or name, of that object).

names = ["John","Carl","Mary","Sean","Sally"]

What if I want to delete Carl?

If I know that Carl index is 1, as it is, I can write this code:

>>> del names[1]

But, what if I don't know the index of Carl? Well, we can find the index of it and then delete it. Let's make that Python does all the work.

>>> del names[names.index("Carl")]

If you want you could have done, taking it easier, this way

>>> indexOfCarl = names.index("Carl")
>>> del names[indexOfCarl]

It's a bit too long, but the result is the same. In fact:

>>> names
["John","Mary","Sean","Sally"]

There in not the name of Carl in the list any more.

Let's pop

We can also do:

>>> names.pop()
'Sally'

The last one is out (last in first out).

>>>  names.pop(0)
"John"

The first one is out.

>>>names
['Sean', 'Sally']

Next time we will be looking at list comprehension.

Comments

Popular posts from this blog

Widgets for Jupyter Notebook: a text input widget

Widgets for Jupyter notebook ¶ Let's import the module ipywidgets into the Jupyter Notebook from ipywidgets import widgets from ipywidgets import * from traitlets import * Now we import the display function from IPython ¶ let's attach a function to the event on_submit After we run this cell, we can go up and write something in the text widget and after you submit the text you wrote will be printed after the cell from IPython.display import display text = widgets . Text () display ( text ) def handle_submit ( sender ): print ( "Thank you for entering this text:" , text . value ) text . on_submit ( handle_submit ) Thank you for entering this text: Ciao

Image in Jupyter and PIL step by step

Hi, """ Hi, we will see a step by step tutorial about PIL and IPython.core.display modules to create images from other images and diplaying them in Jupyter notebook """ # What we will do # Create a card # 1. Take a pic of a heart # 2. Create an image blanck the size of a card 90*130 # 3. Paste the heart in the middle # 4. show the card """ As first step wi will simply display an image on the notebook. I will show two way to display the image with 'display' from IPhyton a. Using the open method of PIL.Image (named Img) b. Using the Image method from the IPython.core.display module """ # 1. Take the pic of a heart from IPython.core.display import Image , display from PIL import Image as Img heart = 'img/heart.png' display ( Image ( heart )) display ( Img . open ( heart )) # 2. Create an image blanck the size of a card 90*130 # 3. Paste the heart in the middle #...

Let's draw a circle with PIL in Python

Let's continue making our coding around PIL. Let's start with some basic drawing: a circle from PIL import Image , ImageDraw img = Image . new ( "RGB" ,( 60 , 60 ), 'white' ) dr = ImageDraw . Draw ( img ) dr . ellipse (( 0 , 0 , 60 , 60 ), 'yellow' ) img . show () this is the image produced *If you use jupyter notebook, just write img at the end to see the output.