Is it possible to import external Python libraries such as the time module?
Correct Answer: C
Explanation External Python libraries can be imported in the global block of a playbook. The global block is executed once when the playbook is loaded and can be used to define global variables and import modules. The time module is one of the standard Python modules that can be imported in the global block. See Global block for more details.