The programming language is Python.
Lists:
1. Create a program that shows an example of both list concatenation and iteration as shown in the PowerPoint.
2. Use each of the list methods as shown in the PowerPoint and, using comments, write what each of those methods does. Lecture 3 shows how to use methods and how to find out the meaning of each using help.
Tuples:
1. Using comments, what are the differences between tuples and lists?
2. Create a program that shows an example of tuple concatenation, iteration, slicing, and repetition.
3. Use each of the tuple methods as shown in the PowerPoint and, using comments, write what each of those methods does.
Sets:
1. Create a program that shows an example of set iteration.
2. Use each of the set methods as shown in the PowerPoint and, using comments, write what each of those methods does.
Dictionary:
1. Create a program that shows an example of concatenating dictionaries.
2. Create a program that shows an example of each of the dictionary methods, using membership operations and iteration using the key values. Using comments, write what each of those methods does.