What kind of data structure in Python is represented in the example below?
cves = [‘CVE-2022-0945’, ‘CVE-2023-1234’, ‘CVE-2022-0987’]
- List
- Tree
- Array
- Dictionary
Explanation & Hint: A list is a data structure in programming languages that contains an ordered structure of elements. The example represents a list in Python.