Smooth python and cookbook Study Notes (7), pythoncookbook

Source: Internet
Author: User

Smooth python and cookbook Study Notes (7), pythoncookbook
1. Read and Write compressed data files

Use the gzip and bz2 modules to read and write compressed files. However, pay attention to the file mode. The default format is binary.

1 # Read the compressed file 2 import gzip 3 with gzip.open('somefile.gz ', 'rt') as f: 4 text = f. read () 5 6 import bz2 7 with bz2.open('somefile.bz2 ', 'rt') as f: 8 text = f. read () 9 10 # Write compressed data 11 import gzip12 with gzip.open('somefile.gz ', 'wt') as f: 13 f. write (text) 14 15 import bz216 with bz2.open('somefile.bz2 ', 'wt') as f: 17 f. write (text)

 

2. serialize Python objects

Use the pickle module to serialize data.

1. Transfer Data

>>> Import pickle >>> data = 'I love python' >>> f = open ('somefile', 'wb') >>> pickle. dump (data, f) # note that one is dump and the other is dumps> s = pickle. dumps (data)

2. Create an object from the byte stream and use the pickle. load () or pickle. loads () function.

>>> F = open ('somefile', 'B') >>> data = pickle. load (f) >>> data = pickle. loads (f)

 

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.