Answer:
The option that is used to store multiple items in a single variable is Lists.
Step-by-step explanation:
Among the provided options (Operators, Loops, Sets, Arguments), the option that is used to store multiple items in a single variable is Lists.
Lists are a data structure in programming that allow you to store multiple values in a single variable. Each value within a list is separated by a comma and enclosed in square brackets []. For example, [1, 2, 3] is a list that contains three values.
On the other hand:
- Operators are symbols used to perform operations on values or variables.
- Loops are used for repeating a block of code multiple times.
- Sets are used to store multiple unique items in a single variable.
- Arguments are values passed to a function when it is called.
Therefore, among the given options, Lists are specifically used to store multiple items in a single variable.
Hence, the correct answer is Lists.