借助IncrementalEncoder.encode()
方法,我們可以使用將該字符串編碼為二進製形式IncrementalEncoder.encode()
方法。
用法:IncrementalEncoder.encode(string)
返回:Return the encoded string.
注意:如果要使用此方法,則應使用python 3.8.2版本或最新版本。
範例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.’
相關用法
- Python codecs.encode()用法及代碼示例
- Python Pandas Series.str.encode()用法及代碼示例
- Python Strings encode()用法及代碼示例
- Python numpy.defchararray.encode()用法及代碼示例
注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 IncrementalEncoder encode() in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。