Python List Introduction Presentation


This is the presentation associated with the python list introduction video.

Download Presentation

Python List Introduction Video Question

This is the Question that was asked in the python list introduction video

Question :

Here we have list of numbers

numbers = [1,6,3,4,5]

Replace the number 6 with numbers 2
In [1]:
numbers = [1,6,3,4,5]
numbers[1] = 2
print(numbers)
[1, 2, 3, 4, 5]