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 :

Module « curses » Python 3.11.3

Fonction init_pair - module curses

Signature de la fonction init_pair

def init_pair(pair_number, fg, bg) 

Description

help(curses.init_pair)

Change the definition of a color-pair.

  pair_number
    The number of the color-pair to be changed (1 - (COLOR_PAIRS-1)).
  fg
    Foreground color number (-1 - (COLORS-1)).
  bg
    Background color number (-1 - (COLORS-1)).

If the color-pair was previously initialized, the screen is refreshed and
all occurrences of that color-pair are changed to the new definition.