12 - More List Functions
Watch the following video, and do the examples shown in the video as they are demonstrated.
Notes from the video
numbers = [8,1,4,17,28,165,7]
len(numbers)
max(numbers)
min(numbers)
list("bucky")
numbers[3]=77
del numbers[3]
Watch the following video, and do the examples shown in the video as they are demonstrated.
Notes from the video
numbers = [8,1,4,17,28,165,7]
len(numbers)
max(numbers)
min(numbers)
list("bucky")
numbers[3]=77
del numbers[3]