List installed python packages

How to find out or list the installed python packages.

Use python builtin help function

help("modules")

Use python pip tool

$ pip list
$ pip show
$ pip freeze

References

python