menu
This will open an interactive help session where you can type in the names of modules, functions, classes, etc., to get information about them.

Example Usage

Here’s a practical example:
import datetime
help(datetime.datetime)
This will provide detailed information about the datetime class within the datetime module, including its methods and usage.