Why would you choose to use the sys module?

(1 point)
A.to generate random numbers
B.to access the deeper levels of Python such as the log
C.to update the operating system.
D.to allow Python to react systemically

B. to access the deeper levels of Python such as the log

The sys module provides access to some variables used or maintained by the interpreter and to functions that interact strongly with the interpreter. It can be used to access command-line arguments, interact with the runtime environment, and perform various system-level operations.