por

Cerca

Heus ací els resultats de la cerca.

2.2 Inheritance and polymorphism — Inheritance as a pillar of OOP
6 Resultats, Darrera modificació:
turned on') class Radio(Device): pass class PortableRadio(Device): def turn_on(self): print('PortableRadio type object was turned on') class TvSe... as turned on') device = Device() radio = Radio() portableRadio = PortableRadio() tvset = TvSet() for element in (device, radio, portableRadio, tvset):
4.2 Serialization of Python objects using the pickle module
1 Resultats, Darrera modificació:
ted with the file; * we consecutively read some portions of data and deserialize it with the ''load()