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 « io » Python 3.11.3

Classe « StringIO »

Informations générales

Héritage

builtins.object
    _IOBase
        _TextIOBase
            StringIO

Définition

class StringIO(_TextIOBase):

help(StringIO)

Text I/O implementation using an in-memory buffer.

The initial_value argument sets the value of object.  The newline
argument is like the one of TextIOWrapper's constructor.

Constructeur(s)

Signature du constructeur Description
__new__(*args, **kwargs) Create and return a new object. See help(type) for accurate signature. [extrait de __new__.__doc__]
__init__(self, /, *args, **kwargs) Initialize self. See help(type(self)) for accurate signature. [extrait de __init__.__doc__]

Liste des attributs statiques

Nom de l'attribut Valeur
closed
line_buffering
newlines

Attributs statiques hérités de la classe _TextIOBase

encoding, errors

Liste des opérateurs

Opérateurs hérités de la classe object

__eq__, __ge__, __gt__, __le__, __lt__, __ne__

Liste des méthodes

Toutes les méthodes Méthodes d'instance Méthodes statiques Méthodes dépréciées
Signature de la méthodeDescription
__getstate__
__next__(self) Implement next(self). [extrait de __next__.__doc__]
__setstate__
close(self) Close the IO object. [extrait de close.__doc__]
getvalue(self) Retrieve the entire contents of the object. [extrait de getvalue.__doc__]
read(self, size=-1) Read at most size characters, returned as a string. [extrait de read.__doc__]
readable(self) Returns True if the IO object can be read. [extrait de readable.__doc__]
readline(self, size=-1) Read until newline or EOF. [extrait de readline.__doc__]
seek(self, pos, whence=0) Change stream position. [extrait de seek.__doc__]
seekable(self) Returns True if the IO object can be seeked. [extrait de seekable.__doc__]
tell(self) Tell the current file position. [extrait de tell.__doc__]
truncate(self, pos=None) Truncate size to pos. [extrait de truncate.__doc__]
writable(self) Returns True if the IO object can be written. [extrait de writable.__doc__]
write(self, s) Write string to file. [extrait de write.__doc__]

Méthodes héritées de la classe _TextIOBase

__init_subclass__, __subclasshook__, detach

Méthodes héritées de la classe _IOBase

__del__, __enter__, __exit__, __iter__, fileno, flush, isatty, readlines, writelines

Méthodes héritées de la classe object

__delattr__, __dir__, __format__, __getattribute__, __hash__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__