# -*- coding: iso-8859-1 -*- #. // _by_CharSupConsoleWrite.py #. // Ecrire les caractères non ansi dans la console. def by_CharSupConsoleWrite( cString ): i = 0 if len( cString ) > 0: while True: c = cString[ i : i + 1 ] if len( c ) > 0: if ord( c ) > 255: print( ord( c ) ) #. endif #. endif i = i + 1 if i > len( cString ): break #. endif #. enddo #. endif return 0 ''' Dernière modification : 2022-02-01 '''