« All Events
2 PM – Intro To Python – Sebastian
October 8, 2022 @ 2:00 pm - 3:00 pm
Today We Did
- list.pop(index) removes item at index
- list.insert(index, value) puts a value at an index
- list.append(value) puts a value at the end of a list
- list.remove(value) removes one of that value from list
- Replace value at index with: list[index] = newValue
Homework
- Page 38 to 41: access, modify, append, remove
- TRY IT YOURSELF from page 42: 3-4, 3-5, 3-6
- If you want the challenge, try: Tell Me Your Age homework (ONLY number 1)