1/9
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
Object Serialization
The process of converting data into a binary format to store or transmit the data.
Deserialization
The process of converting binary data back into a usable object.
Pickle Module
A Python module used for serializing and deserializing Python objects.
JSON (JavaScript Object Notation)
A lightweight data interchange format that is easy for humans to read and write and easy for machines to parse and generate.
Dump Method (Pickle)
A method that serializes an object and writes it to a file.
Load Method (Pickle)
A method that reads a serialized object from a file and reconstructs it into an object.
Object structure
The arrangement and organization of the attributes and methods within a Python object.
Binary Format
A representation of data in a format that is not human-readable, used for efficient data storage and transmission.
Text Format
A human-readable format where data is represented in plain text, commonly used for configuration files.
Matplotlib
A Python library for creating static, animated, and interactive visualizations in Python.