Python中的增量编码器编码()
借助IncrementalEncoder.encode()
方法,我们可以使用IncrementalEncoder.encode()
方法将字符串编码为二进制形式。
Syntax : IncrementalEncoder.encode(string)
Return : Return the encoded string.
Note : If you want to use this method you should have python 3.8.2 version or latest.
示例 #1:
在这个例子中我们可以看到,通过使用IncrementalEncoder.encode()
方法,我们可以使用该方法得到可以是二进制形式的编码字符串。
# import codecs and IncrementalEncoder
import codecs
from codecs import IncrementalEncoder
s = 'GeeksForGeeks'
obj = IncrementalEncoder()
# Using IncrementalEncoder.encode() method
gfg = obj.encode(s)
print(gfg)
输出 :
b’GeeksForGeeks’
示例 #2:
# import codecs and IncrementalEncoder
import codecs
from codecs import IncrementalEncoder
s = 'This is Python in real world'
obj = IncrementalEncoder()
# Using IncrementalEncoder.encode() method
gfg = obj.encode(s)
print(gfg)
输出 :
b’I love python.’