Help with ‘python-mode’

‘C-M-q’ (prog-indent-sexp)
  Indent the expression after point.

‘<remap> <mark-defun>’ (python-mark-defun)
  Put mark at end of this defun, point at beginning.

‘<remap> <backward-up-list>’ (python-nav-backward-up-list)
  Move backward out of one level of parentheses (or blocks).

‘<remap> <forward-sentence>’ (python-nav-forward-block)
  Move forward to next block of code.

‘<remap> <backward-sentence>’ (python-nav-backward-block)
  Move backward to previous block of code.

‘C-c C-d’ (python-describe-at-point)
  

‘C-c C-f’ (python-eldoc-at-point)
  Get help on SYMBOL using `help'.

‘C-c C-v’ (python-check)
  Check a Python file (default current buffer's file).

‘C-c C-z’ (python-shell-switch-to-shell)
  Switch to inferior Python process buffer.

‘C-c C-l’ (python-shell-send-file)
  Send FILE-NAME to inferior Python PROCESS.

‘C-c C-c’ (python-shell-send-buffer)
  Send the entire buffer to inferior Python process.

‘C-c C-r’ (python-shell-send-region)
  Send the region delimited by START and END to inferior Python process.

‘C-c C-s’ (python-shell-send-string)
  Send STRING to inferior Python PROCESS.

‘C-c C-p’ (run-python)
  Run an inferior Python process.

‘C-c C-t c’ (python-skeleton-class)
  Insert class statement.

‘C-c C-t d’ (python-skeleton-def)
  Insert def statement.

‘C-c C-t f’ (python-skeleton-for)
  Insert for statement.

‘C-c C-t i’ (python-skeleton-if)
  Insert if statement.

‘C-c C-t m’ (python-skeleton-import)
  Insert import statement.

‘C-c C-t t’ (python-skeleton-try)
  Insert try statement.

‘C-c C-t w’ (python-skeleton-while)
  Insert while statement.

‘C-c >’ (python-indent-shift-right)
  Shift lines contained in region START END by COUNT columns to the right.

‘C-c <’ (python-indent-shift-left)
  Shift lines contained in region START END by COUNT columns to the left.

‘C-c C-j’ (imenu)
  Jump to a place in the buffer chosen using a buffer menu or mouse menu.

‘DEL’ (python-indent-dedent-line-backspace)
  De-indent current line.

‘<backtab>’ (python-indent-dedent-line)
  De-indent current line.

‘C-M-i’ (completion-at-point)
  Perform completion on the text around point.

‘C-M-x’ (python-shell-send-defun)
  Send the current defun to inferior Python process.