python marshal loads failed_python使用marshal模块序列化实例

本文介绍了Python中marshal模块的使用,包括序列化和反序列化数据到文件的操作。通过示例代码展示了如何使用marshal.dump()、marshal.load()、marshal.dumps()和marshal.loads()函数,以及对marshal.version常量的解释。
摘要由CSDN通过智能技术生成

本文实例讲述了python使用marshal模块序列化的方法,分享给大家供大家参考。具体方法如下:

先来看看下面这段代码:

?12345678910111213141516171819202122232425262728 import marshal data1 = ['abc',12,23,'jb51'] #几个测试数据 data2 = {1:'aaa',b:'dad'} data3 = (1,2,4) output_file = open(a.txt,'wb')#把这些数据序列化到文件中,注:文件必须以二进制模式打开 marshal.dump(data1,output_file) marshal.dump(data2,output_file) marshal.dump(data3,output_file) output_file.close() input_file = open('a.txt','rb')#从文件中读取序列化的数据 #data1 = [] data1 = marshal.load(input_file) data2 = marshal.load(input_file) data3 = marshal.load(input_file) print data1#给同志们打印出结果看看 print data2 print data3 outstring = marshal.dumps(data1)#marshal.dumps()返回是一个字节串,该字节串用于写入文件 open('out.txt','wb').write(outstring) file_data = open('out.txt','rb').read() real_data = marshal.loads(file_data) print real_data

结果:

?1234 ['abc', 12, 23, 'jb51'] {1: 'aaa', 'b': 'dad'} (1, 2, 4) ['abc', 12, 23, 'jb51']

marshel模块的几个函数官方描述如下:

the module defines these functions:

marshal.dump(value, file[, version])

write the value on the open file. the value must be a supported type. the file must be an open file object such as sys.stdout or returned by open() or os.popen(). it must be opened in binary mode ('wb' or 'w+b').

if the value has (or contains an object that has) an unsupported type, a valueerror exception is raised — but garbage data will also be written to the file. the object will not be properly read back by load().

new in version 2.4: the version argument indicates the data format that dump should use (see below).

marshal.load(file)

read one value from the open file and return it. if no valid value is read (e.g. because the data has a different python version's incompatible marshal format), raise eoferror, valueerror or typeerror. the file must be an open file object opened in binary mode ('rb' or 'r+b').

warning

if an object containing an unsupported type was marshalled with dump(), load() will substitute none for the unmarshallable type.

marshal.dumps(value[, version])

return the string that would be written to a file by dump(value, file). the value must be a supported type. raise a valueerror exception if value has (or contains an object that has) an unsupported type.

new in version 2.4: the version argument indicates the data format that dumps should use (see below).

marshal.loads(string)

convert the string to a value. if no valid value is found, raise eoferror, valueerror or typeerror. extra characters in the string are ignored.

in addition, the following constants are defined:

marshal.version

indicates the format that the module uses.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值