Answer:
1. Comment
2. Five (5).
3. Line.
4. Tuple; that
Explanation:
1. A comment is a human-readable description in the source code of a computer program. Thus, it's an annotation or description in the source code of a software program that is readable by humans.
2. Python has five (5) standard data types, these includes; number, string, list, dictionary and tuple.
3. A line contains items separated by commas and enclosed within square brackets i.e [ ]. Thus, it's simply an ordered collection of one or multiple data items.
4. A tuple consists of key-value pairs
that cannot be changed and use parentheses. For example, Newtuple = ("strawberry", "apple", "mango", "banana", "orange").