Python Pickle Module Usage __python

Source: Internet
Author: User

Using Python's built-in modules to save, extract data structure objects in Python:

such as lists, dictionaries, collections, and so on.

First import the Pickle module (no installation required):

Import Pickle

To save dictionary data using pickle:

Output_2_3 = open (' P2c_2_3.pkl ', ' WB ')
pickle.dump (P2c_2_3, Output_2_3)
output_2_3.close ()
P2c_2_3 is one of my dictionaries.

Save it as

P2c_2_3.pkl
File


Use pickle to extract saved data:

P2C23_PKL = open (' p2c_2_3.pkl ', ' RB ')
P2c_2_3 = Pickle.load (P2C23_PKL)

Variable meaning ditto

After extraction, you can set the

P2c_2_3

Use as a dictionary directly


Other data types are saved using pickle, and the extraction method is similar to the above.















Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.