- This event has passed.
3 PM – Intro To Python – Sebastian
October 8, 2022 @ 3:00 pm - 4:00 pm
Today We Did
- list.insert(index, value) puts value at index of where it would be once added
- list.append(value) puts value at end of list
- list.remove(value) removes one of that value from list
- list.pop(index) removes the value at the index
- Replace: list[index] = newValue
Homework
- Page 38 to 41: access, modify, append, remove
- TRY IT YOURSELF from page 42: 3-4, 3-5, 3-6