Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Classe « window » Python 3.11.3

Méthode curses.window.derwin

Signature de la méthode derwin

Description

help(window.derwin)

derwin([nlines=0, ncols=0,] begin_y, begin_x)
Create a sub-window (window-relative coordinates).

  nlines
    Height.
  ncols
    Width.
  begin_y
    Top side y-coordinate.
  begin_x
    Left side x-coordinate.

derwin() is the same as calling subwin(), except that begin_y and begin_x
are relative to the origin of the window, rather than relative to the entire
screen.