Do the following:
- Create an object that is a list.
- Add the name Tom to the list as a string with the append function.
- Print off the list, then remove the name Tom, then print off the list again.
- Add the integer 1 to the list 4 times
- Use the count function to see how many times 1 appears in the list.
- Print off the length of the list.
- Use the join function to join together all items in the list with a space between each item
If you get stuck, check out Lesson 06: Cheat Sheet.