Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
Introduction to lists
Accessing list elements
Unnamed lists
Working with lists
Summary

Instruction

Correct! What happens if you try to access a list element using single brackets?

job_role["requirements"]

If we try to retrieve the requirements element with single brackets, we will get a sublist as a result. This sublist contains only one element named requirements. This element is also a list.

Exercise

Run the code provided and observe the result.