我是靠谱客的博主 故意月光,最近开发中收集的这篇文章主要介绍python 解压缩字符串_python通过zlib实现压缩与解压字符串的方法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

本文实例讲述了python通过zlib实现压缩与解压字符串的方法。分享给大家供大家参考。具体实现方法如下:

使用zlib.compress可以压缩字符串。使用zlib.decompress可以解压字符串。如下

复制代码 代码如下:

#coding=utf-8

import zlib

s = "hello word, 00000000000000000000000000000000"

print len(s)

c = zlib.compress(s)

print len(c)

d = zlib.decompress(c)

print d

示范代码2:

复制代码 代码如下:

import zlib

message = 'witch which has which witches wrist watch'

compressed = zlib.compress(message)

decompressed = zlib.decompress(compressed)

print 'original:', repr(message)

print 'compressed:', repr(compressed)

print 'decompressed:', repr(decompressed) #输出original: 'witch which has which witches wrist watch'

compressed: 'xx9c+xcf,IxceP(xcfxc8x04x92x19x89xc5PV9H4x15xc8+xca,.Q(Ox04xf2x00D?x0fx89'

decompressed: 'witch which has which witches wrist watch'

如果我们要对字符串进行解压可以使用zlib.compressobj和zlib.decompressobj对文件进行压缩解压

复制代码 代码如下:

def compress(infile, dst, level=9):

infile = open(infile, 'rb')

dst = open(dst, 'wb')

compress = zlib.compressobj(level)

data = infile.read(1024)

while data:

dst.write(compress.compress(data))

data = infile.read(1024)

dst.write(compress.flush())

def decompress(infile, dst):

infile = open(infile, 'rb')

dst = open(dst, 'wb')

decompress = zlib.decompressobj()

data = infile.read(1024)

while data:

dst.write(decompress.decompress(data))

data = infile.read(1024)

dst.write(decompress.flush())

希望本文所述对大家的Python程序设计有所帮助。

微信

分享

相关标签:python zlib 压缩 解压 字符串

本文原创发布php教程 ,转载请注明出处,感谢您的尊重!

上一篇:Python多线程同步Lock、RLock、Semaphore、Event实例

下一篇:Python多进程通信Queue、Pipe、Value、Array实例

相关文章

相关视频

在Django框架中运行Python应用全攻略

在Python的Django框架中创建和使用模版

python获取元素在数组中索引号的方法

浅谈python中截取字符函数strip,lstr...

python通过zlib实现压缩与解压字符串的方法

Python 简介

Python 环境搭建

Python 中文编码

Python 基础语法

Python 变量类型

网友评论

文明上网理性发言,请遵守 新闻评论服务协议

我要评论

立即提交

专题推荐

独孤九贱-php全栈开发教程

全栈 100W+

主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门

玉女心经-web前端开发教程

入门 50W+

主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门

天龙八部-实战开发教程

实战 80W+

主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习

作者信息

php教程

认证0级讲师

最近文章

发布技术文章

最新文章

热门排行

python之禅怎么打出来

python怎么学

boosting和bootstrap区别

python库是什么意思

python卸载后怎么也安装不上

python安装后怎么不见了

python怎么卸载模块

python能做什么?是什么?

pickle库的使用详解

Anaconda的新手使用大全

python爬虫是什么?为什么把python叫做爬虫?

Python微信库:itchat的用法详解

关于python3学习基础知识总结

python爬虫是什么

使用Python可以做什么

python如何实现可视化热力图

推荐视频教程

javascript初级视频教程

jquery 基础视频教程

视频教程分类

php视频教程

html视频教程

css视频教程

JS视频教程

jQuery视频教程

mysql视频教程

Linux视频教程

Python视频教程

网站首页

PHP视频

PHP实战

PHP中文网:独家原创,永久免费的在线php视频教程,php技术学习阵地!

Copyright 2014-2019 http://www.php.cn/ All Rights Reserved | 皖B2-20150071-9 皖公网安备 34010402701654号 免责申明赞助与捐赠

最后

以上就是故意月光为你收集整理的python 解压缩字符串_python通过zlib实现压缩与解压字符串的方法的全部内容,希望文章能够帮你解决python 解压缩字符串_python通过zlib实现压缩与解压字符串的方法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部