René's URL Explorer Experiment


Title: codecs --- 編解碼器註冊表和基底類別 — Python 3.14.0 說明文件

direct link

Domain: python.github.io

readthedocs-addons-api-version1

Links:

https://www.python.org/
目錄https://python.github.io/python-docs-zh-tw/contents.html
codecs --- 編解碼器註冊表和基底類別https://python.github.io/python-docs-zh-tw/library/codecs.html
Codec Base Classeshttps://python.github.io/python-docs-zh-tw/library/codecs.html#codec-base-classes
Error Handlershttps://python.github.io/python-docs-zh-tw/library/codecs.html#error-handlers
Stateless Encoding and Decodinghttps://python.github.io/python-docs-zh-tw/library/codecs.html#stateless-encoding-and-decoding
Incremental Encoding and Decodinghttps://python.github.io/python-docs-zh-tw/library/codecs.html#incremental-encoding-and-decoding
IncrementalEncoder 物件https://python.github.io/python-docs-zh-tw/library/codecs.html#incrementalencoder-objects
IncrementalDecoder 物件https://python.github.io/python-docs-zh-tw/library/codecs.html#incrementaldecoder-objects
串流編碼和解碼https://python.github.io/python-docs-zh-tw/library/codecs.html#stream-encoding-and-decoding
StreamWriter 物件https://python.github.io/python-docs-zh-tw/library/codecs.html#streamwriter-objects
StreamReader 物件https://python.github.io/python-docs-zh-tw/library/codecs.html#streamreader-objects
StreamReaderWriter 物件https://python.github.io/python-docs-zh-tw/library/codecs.html#streamreaderwriter-objects
StreamRecoder 物件https://python.github.io/python-docs-zh-tw/library/codecs.html#streamrecoder-objects
編碼和 Unicodehttps://python.github.io/python-docs-zh-tw/library/codecs.html#encodings-and-unicode
標準編碼https://python.github.io/python-docs-zh-tw/library/codecs.html#standard-encodings
Python Specific Encodingshttps://python.github.io/python-docs-zh-tw/library/codecs.html#python-specific-encodings
Text Encodingshttps://python.github.io/python-docs-zh-tw/library/codecs.html#text-encodings
Binary Transformshttps://python.github.io/python-docs-zh-tw/library/codecs.html#binary-transforms
Standalone Codec Functionshttps://python.github.io/python-docs-zh-tw/library/codecs.html#standalone-codec-functions
Text Transformshttps://python.github.io/python-docs-zh-tw/library/codecs.html#text-transforms
encodings --- Encodings packagehttps://python.github.io/python-docs-zh-tw/library/codecs.html#module-encodings
encodings.idna --- Internationalized Domain Names in Applicationshttps://python.github.io/python-docs-zh-tw/library/codecs.html#module-encodings.idna
encodings.mbcs --- Windows ANSI 碼頁https://python.github.io/python-docs-zh-tw/library/codecs.html#module-encodings.mbcs
encodings.utf_8_sig --- UTF-8 codec with BOM signaturehttps://python.github.io/python-docs-zh-tw/library/codecs.html#module-encodings.utf_8_sig
struct --- 將位元組直譯為打包起來的二進位資料https://python.github.io/python-docs-zh-tw/library/struct.html
資料型別https://python.github.io/python-docs-zh-tw/library/datatypes.html
回報錯誤https://python.github.io/python-docs-zh-tw/bugs.html
顯示原始碼 https://github.com/python/cpython/blob/main/Doc/library/codecs.rst?plain=1
索引https://python.github.io/python-docs-zh-tw/genindex.html
模組https://python.github.io/python-docs-zh-tw/py-modindex.html
下一頁https://python.github.io/python-docs-zh-tw/library/datatypes.html
上一頁https://python.github.io/python-docs-zh-tw/library/struct.html
Pythonhttps://www.python.org/
3.14.0 Documentationhttps://python.github.io/python-docs-zh-tw/index.html
Python 標準函式庫 (Standard Library)https://python.github.io/python-docs-zh-tw/library/index.html
二進位資料服務https://python.github.io/python-docs-zh-tw/library/binary.html
codecs --- 編解碼器註冊表和基底類別https://python.github.io/python-docs-zh-tw/library/codecs.html
https://python.github.io/python-docs-zh-tw/library/codecs.html#module-codecs
Lib/codecs.pyhttps://github.com/python/cpython/tree/3.14/Lib/codecs.py
text encodingshttps://python.github.io/python-docs-zh-tw/glossary.html#term-text-encoding
text encodingshttps://python.github.io/python-docs-zh-tw/glossary.html#term-text-encoding
byteshttps://python.github.io/python-docs-zh-tw/library/stdtypes.html#bytes
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.encode
ValueErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#ValueError
UnicodeEncodeErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#UnicodeEncodeError
Codec Base Classeshttps://python.github.io/python-docs-zh-tw/library/codecs.html#codec-base-classes
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.decode
ValueErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#ValueError
UnicodeDecodeErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#UnicodeDecodeError
Codec Base Classeshttps://python.github.io/python-docs-zh-tw/library/codecs.html#codec-base-classes
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.charmap_build
strhttps://python.github.io/python-docs-zh-tw/library/stdtypes.html#str
dictionaryhttps://python.github.io/python-docs-zh-tw/library/stdtypes.html#dict
TypeErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#TypeError
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.lookup
CodecInfohttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.CodecInfo
CodecInfohttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.CodecInfo
LookupErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#LookupError
CodecInfohttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.CodecInfo
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.CodecInfo
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.CodecInfo.name
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.CodecInfo.encode
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.CodecInfo.decode
encode()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.Codec.encode
decode()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.Codec.decode
Codec Interfacehttps://python.github.io/python-docs-zh-tw/library/codecs.html#codec-objects
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.CodecInfo.incrementalencoder
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.CodecInfo.incrementaldecoder
IncrementalEncoderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalEncoder
IncrementalDecoderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalDecoder
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.CodecInfo.streamwriter
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.CodecInfo.streamreader
StreamWriterhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamWriter
StreamReaderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReader
lookup()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.lookup
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.getencoder
LookupErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#LookupError
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.getdecoder
LookupErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#LookupError
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.getincrementalencoder
LookupErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#LookupError
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.getincrementaldecoder
LookupErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#LookupError
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.getreader
StreamReaderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReader
LookupErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#LookupError
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.getwriter
StreamWriterhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamWriter
LookupErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#LookupError
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.register
CodecInfohttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.CodecInfo
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.unregister
open()https://python.github.io/python-docs-zh-tw/library/functions.html#open
iohttps://python.github.io/python-docs-zh-tw/library/io.html#module-io
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.open
StreamReaderWriterhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReaderWriter
open()https://python.github.io/python-docs-zh-tw/library/functions.html#open
ValueErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#ValueError
open()https://python.github.io/python-docs-zh-tw/library/functions.html#open
codecs.open()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.open
open()https://python.github.io/python-docs-zh-tw/library/functions.html#open
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.EncodedFile
StreamRecoderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamRecoder
ValueErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#ValueError
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.iterencode
strhttps://python.github.io/python-docs-zh-tw/library/stdtypes.html#str
generatorhttps://python.github.io/python-docs-zh-tw/glossary.html#term-generator
strhttps://python.github.io/python-docs-zh-tw/library/stdtypes.html#str
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.iterdecode
byteshttps://python.github.io/python-docs-zh-tw/library/stdtypes.html#bytes
generatorhttps://python.github.io/python-docs-zh-tw/glossary.html#term-generator
byteshttps://python.github.io/python-docs-zh-tw/library/stdtypes.html#bytes
iterencode()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.iterencode
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.readbuffer_encode
tuplehttps://python.github.io/python-docs-zh-tw/library/stdtypes.html#tuple
buffer-compatible objecthttps://python.github.io/python-docs-zh-tw/c-api/buffer.html#bufferobjects
strhttps://python.github.io/python-docs-zh-tw/library/stdtypes.html#str
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.BOM
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.BOM_BE
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.BOM_LE
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.BOM_UTF8
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.BOM_UTF16
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.BOM_UTF16_BE
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.BOM_UTF16_LE
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.BOM_UTF32
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.BOM_UTF32_BE
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.BOM_UTF32_LE
BOM_UTF16https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.BOM_UTF16
BOM_UTF16_BEhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.BOM_UTF16_BE
BOM_UTF16_LEhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.BOM_UTF16_LE
BOMhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.BOM
BOM_UTF16https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.BOM_UTF16
BOM_LEhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.BOM_LE
BOM_UTF16_LEhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.BOM_UTF16_LE
BOM_BEhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.BOM_BE
BOM_UTF16_BEhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.BOM_UTF16_BE
https://python.github.io/python-docs-zh-tw/library/codecs.html#codec-base-classes
codecshttps://python.github.io/python-docs-zh-tw/library/codecs.html#module-codecs
https://python.github.io/python-docs-zh-tw/library/codecs.html#error-handlers
標準編碼https://python.github.io/python-docs-zh-tw/library/codecs.html#standard-encodings
UnicodeErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#UnicodeError
strict_errors()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.strict_errors
ignore_errors()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.ignore_errors
replace_errors()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.replace_errors
backslashreplace_errors()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.backslashreplace_errors
PEP 383https://peps.python.org/pep-0383/
text encodingshttps://python.github.io/python-docs-zh-tw/glossary.html#term-text-encoding
xmlcharrefreplace_errors()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.xmlcharrefreplace_errors
namereplace_errors()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.namereplace_errors
strhttps://python.github.io/python-docs-zh-tw/library/stdtypes.html#str
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.register_error
UnicodeEncodeErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#UnicodeEncodeError
strhttps://python.github.io/python-docs-zh-tw/library/stdtypes.html#str
byteshttps://python.github.io/python-docs-zh-tw/library/stdtypes.html#bytes
IndexErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#IndexError
UnicodeDecodeErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#UnicodeDecodeError
UnicodeTranslateErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#UnicodeTranslateError
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.lookup_error
LookupErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#LookupError
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.strict_errors
UnicodeErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#UnicodeError
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.ignore_errors
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.replace_errors
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.backslashreplace_errors
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.xmlcharrefreplace_errors
text encodinghttps://python.github.io/python-docs-zh-tw/glossary.html#term-text-encoding
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.namereplace_errors
text encodinghttps://python.github.io/python-docs-zh-tw/glossary.html#term-text-encoding
https://python.github.io/python-docs-zh-tw/library/codecs.html#stateless-encoding-and-decoding
Codechttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.Codec
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.Codec
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.Codec.encode
text encodinghttps://python.github.io/python-docs-zh-tw/glossary.html#term-text-encoding
Codechttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.Codec
StreamWriterhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamWriter
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.Codec.decode
text encodinghttps://python.github.io/python-docs-zh-tw/glossary.html#term-text-encoding
Codechttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.Codec
StreamReaderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReader
https://python.github.io/python-docs-zh-tw/library/codecs.html#incremental-encoding-and-decoding
IncrementalEncoderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalEncoder
IncrementalDecoderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalDecoder
encode()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalEncoder.encode
decode()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalDecoder.decode
encode()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalEncoder.encode
decode()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalDecoder.decode
https://python.github.io/python-docs-zh-tw/library/codecs.html#incrementalencoder-objects
IncrementalEncoderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalEncoder
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalEncoder
IncrementalEncoderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalEncoder
IncrementalEncoderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalEncoder
Error Handlershttps://python.github.io/python-docs-zh-tw/library/codecs.html#error-handlers
IncrementalEncoderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalEncoder
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalEncoder.encode
encode()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.encode
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalEncoder.reset
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalEncoder.getstate
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalEncoder.setstate
getstate()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalEncoder.getstate
https://python.github.io/python-docs-zh-tw/library/codecs.html#incrementaldecoder-objects
IncrementalDecoderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalDecoder
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalDecoder
IncrementalDecoderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalDecoder
IncrementalDecoderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalDecoder
Error Handlershttps://python.github.io/python-docs-zh-tw/library/codecs.html#error-handlers
IncrementalDecoderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalDecoder
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalDecoder.decode
decode()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.decode
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalDecoder.reset
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalDecoder.getstate
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalDecoder.setstate
getstate()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.IncrementalDecoder.getstate
https://python.github.io/python-docs-zh-tw/library/codecs.html#stream-encoding-and-decoding
StreamWriterhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamWriter
StreamReaderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReader
https://python.github.io/python-docs-zh-tw/library/codecs.html#streamwriter-objects
StreamWriterhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamWriter
Codechttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.Codec
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamWriter
StreamWriterhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamWriter
StreamWriterhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamWriter
Error Handlershttps://python.github.io/python-docs-zh-tw/library/codecs.html#error-handlers
StreamWriterhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamWriter
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamWriter.write
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamWriter.writelines
write()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamWriter.write
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamWriter.reset
StreamWriterhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamWriter
https://python.github.io/python-docs-zh-tw/library/codecs.html#streamreader-objects
StreamReaderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReader
Codechttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.Codec
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReader
StreamReaderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReader
StreamReaderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReader
Error Handlershttps://python.github.io/python-docs-zh-tw/library/codecs.html#error-handlers
StreamReaderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReader
register_error()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.register_error
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReader.read
read()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReader.read
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReader.readline
read()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReader.read
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReader.readlines
decode()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.decode
read()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReader.read
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReader.reset
StreamReaderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReader
https://python.github.io/python-docs-zh-tw/library/codecs.html#streamreaderwriter-objects
StreamReaderWriterhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReaderWriter
lookup()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.lookup
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReaderWriter
StreamReaderWriterhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReaderWriter
StreamReaderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReader
StreamWriterhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamWriter
StreamReaderWriterhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReaderWriter
StreamReaderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReader
StreamWriterhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamWriter
https://python.github.io/python-docs-zh-tw/library/codecs.html#streamrecoder-objects
StreamRecoderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamRecoder
lookup()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.lookup
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamRecoder
StreamRecoderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamRecoder
read()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReader.read
write()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamWriter.write
Codechttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.Codec
StreamReaderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReader
StreamWriterhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamWriter
StreamRecoderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamRecoder
StreamReaderhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamReader
StreamWriterhttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.StreamWriter
https://python.github.io/python-docs-zh-tw/library/codecs.html#encodings-and-unicode
PEP 393https://peps.python.org/pep-0393/
text encodingshttps://python.github.io/python-docs-zh-tw/glossary.html#term-text-encoding
UnicodeEncodeErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#UnicodeEncodeError
https://python.github.io/python-docs-zh-tw/library/codecs.html#standard-encodings
normalize_encoding()https://python.github.io/python-docs-zh-tw/library/codecs.html#encodings.normalize_encoding
aliases.pyhttps://github.com/python/cpython/tree/3.14/Lib/encodings/aliases.py
https://python.github.io/python-docs-zh-tw/library/codecs.html#python-specific-encodings
https://python.github.io/python-docs-zh-tw/library/codecs.html#text-encodings
strhttps://python.github.io/python-docs-zh-tw/library/stdtypes.html#str
byteshttps://python.github.io/python-docs-zh-tw/library/stdtypes.html#bytes
bytes-like objecthttps://python.github.io/python-docs-zh-tw/glossary.html#term-bytes-like-object
strhttps://python.github.io/python-docs-zh-tw/library/stdtypes.html#str
RFC 3490https://datatracker.ietf.org/doc/html/rfc3490.html
encodings.idnahttps://python.github.io/python-docs-zh-tw/library/codecs.html#module-encodings.idna
RFC 3492https://datatracker.ietf.org/doc/html/rfc3492.html
https://python.github.io/python-docs-zh-tw/library/codecs.html#binary-transforms
bytes-like objecthttps://python.github.io/python-docs-zh-tw/glossary.html#term-bytes-like-object
byteshttps://python.github.io/python-docs-zh-tw/library/stdtypes.html#bytes
bytes.decode()https://python.github.io/python-docs-zh-tw/library/stdtypes.html#bytes.decode
strhttps://python.github.io/python-docs-zh-tw/library/stdtypes.html#str
[1]https://python.github.io/python-docs-zh-tw/library/codecs.html#b64
bytes-like objecthttps://python.github.io/python-docs-zh-tw/glossary.html#term-bytes-like-object
base64.encodebytes()https://python.github.io/python-docs-zh-tw/library/base64.html#base64.encodebytes
base64.decodebytes()https://python.github.io/python-docs-zh-tw/library/base64.html#base64.decodebytes
bz2.compress()https://python.github.io/python-docs-zh-tw/library/bz2.html#bz2.compress
bz2.decompress()https://python.github.io/python-docs-zh-tw/library/bz2.html#bz2.decompress
binascii.b2a_hex()https://python.github.io/python-docs-zh-tw/library/binascii.html#binascii.b2a_hex
binascii.a2b_hex()https://python.github.io/python-docs-zh-tw/library/binascii.html#binascii.a2b_hex
quopri.encode()https://python.github.io/python-docs-zh-tw/library/quopri.html#quopri.encode
quopri.decode()https://python.github.io/python-docs-zh-tw/library/quopri.html#quopri.decode
zlib.compress()https://python.github.io/python-docs-zh-tw/library/zlib.html#zlib.compress
zlib.decompress()https://python.github.io/python-docs-zh-tw/library/zlib.html#zlib.decompress
1https://python.github.io/python-docs-zh-tw/library/codecs.html#id5
bytes-like objectshttps://python.github.io/python-docs-zh-tw/glossary.html#term-bytes-like-object
strhttps://python.github.io/python-docs-zh-tw/library/stdtypes.html#str
https://python.github.io/python-docs-zh-tw/library/codecs.html#standalone-codec-functions
codecs.encode()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.encode
codecs.decode()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.decode
picklehttps://python.github.io/python-docs-zh-tw/library/pickle.html#module-pickle
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.codecs.escape_encode
repr()https://python.github.io/python-docs-zh-tw/library/functions.html#repr
byteshttps://python.github.io/python-docs-zh-tw/library/stdtypes.html#bytes
byteshttps://python.github.io/python-docs-zh-tw/library/stdtypes.html#bytes
https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.codecs.escape_decode
bytes-like objecthttps://python.github.io/python-docs-zh-tw/glossary.html#term-bytes-like-object
byteshttps://python.github.io/python-docs-zh-tw/library/stdtypes.html#bytes
https://python.github.io/python-docs-zh-tw/library/codecs.html#text-transforms
strhttps://python.github.io/python-docs-zh-tw/library/stdtypes.html#str
strhttps://python.github.io/python-docs-zh-tw/library/stdtypes.html#str
str.encode()https://python.github.io/python-docs-zh-tw/library/stdtypes.html#str.encode
byteshttps://python.github.io/python-docs-zh-tw/library/stdtypes.html#bytes
encodingshttps://python.github.io/python-docs-zh-tw/library/codecs.html#module-encodings
https://python.github.io/python-docs-zh-tw/library/codecs.html#module-encodings
https://python.github.io/python-docs-zh-tw/library/codecs.html#encodings.normalize_encoding
codecs.lookup()https://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.lookup
https://python.github.io/python-docs-zh-tw/library/codecs.html#encodings.search_function
normalize_encoding()https://python.github.io/python-docs-zh-tw/library/codecs.html#encodings.normalize_encoding
codecs.CodecInfohttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.CodecInfo
https://python.github.io/python-docs-zh-tw/library/codecs.html#encodings.win32_code_page_search_function
codecs.CodecInfohttps://python.github.io/python-docs-zh-tw/library/codecs.html#codecs.CodecInfo
可用性https://python.github.io/python-docs-zh-tw/library/intro.html#availability
https://python.github.io/python-docs-zh-tw/library/codecs.html#encodings.CodecRegistryError
encodings.idnahttps://python.github.io/python-docs-zh-tw/library/codecs.html#module-encodings.idna
https://python.github.io/python-docs-zh-tw/library/codecs.html#module-encodings.idna
RFC 3490https://datatracker.ietf.org/doc/html/rfc3490.html
RFC 3492https://datatracker.ietf.org/doc/html/rfc3492.html
stringprephttps://python.github.io/python-docs-zh-tw/library/stringprep.html#module-stringprep
RFC 5891https://datatracker.ietf.org/doc/html/rfc5891.html
RFC 5895https://datatracker.ietf.org/doc/html/rfc5895.html
idnahttps://pypi.org/project/idna/
section 3.1 of RFC 3490https://datatracker.ietf.org/doc/html/rfc3490.html#section-3.1
sockethttps://python.github.io/python-docs-zh-tw/library/socket.html#module-socket
http.clienthttps://python.github.io/python-docs-zh-tw/library/http.client.html#module-http.client
ftplibhttps://python.github.io/python-docs-zh-tw/library/ftplib.html#module-ftplib
http.clienthttps://python.github.io/python-docs-zh-tw/library/http.client.html#module-http.client
encodings.idnahttps://python.github.io/python-docs-zh-tw/library/codecs.html#module-encodings.idna
https://python.github.io/python-docs-zh-tw/library/codecs.html#encodings.idna.nameprep
https://python.github.io/python-docs-zh-tw/library/codecs.html#encodings.idna.ToASCII
RFC 3490https://datatracker.ietf.org/doc/html/rfc3490.html
https://python.github.io/python-docs-zh-tw/library/codecs.html#encodings.idna.ToUnicode
RFC 3490https://datatracker.ietf.org/doc/html/rfc3490.html
encodings.mbcshttps://python.github.io/python-docs-zh-tw/library/codecs.html#module-encodings.mbcs
https://python.github.io/python-docs-zh-tw/library/codecs.html#module-encodings.mbcs
可用性https://python.github.io/python-docs-zh-tw/library/intro.html#availability
encodings.utf_8_sighttps://python.github.io/python-docs-zh-tw/library/codecs.html#module-encodings.utf_8_sig
https://python.github.io/python-docs-zh-tw/library/codecs.html#module-encodings.utf_8_sig
目錄https://python.github.io/python-docs-zh-tw/contents.html
codecs --- 編解碼器註冊表和基底類別https://python.github.io/python-docs-zh-tw/library/codecs.html
Codec Base Classeshttps://python.github.io/python-docs-zh-tw/library/codecs.html#codec-base-classes
Error Handlershttps://python.github.io/python-docs-zh-tw/library/codecs.html#error-handlers
Stateless Encoding and Decodinghttps://python.github.io/python-docs-zh-tw/library/codecs.html#stateless-encoding-and-decoding
Incremental Encoding and Decodinghttps://python.github.io/python-docs-zh-tw/library/codecs.html#incremental-encoding-and-decoding
IncrementalEncoder 物件https://python.github.io/python-docs-zh-tw/library/codecs.html#incrementalencoder-objects
IncrementalDecoder 物件https://python.github.io/python-docs-zh-tw/library/codecs.html#incrementaldecoder-objects
串流編碼和解碼https://python.github.io/python-docs-zh-tw/library/codecs.html#stream-encoding-and-decoding
StreamWriter 物件https://python.github.io/python-docs-zh-tw/library/codecs.html#streamwriter-objects
StreamReader 物件https://python.github.io/python-docs-zh-tw/library/codecs.html#streamreader-objects
StreamReaderWriter 物件https://python.github.io/python-docs-zh-tw/library/codecs.html#streamreaderwriter-objects
StreamRecoder 物件https://python.github.io/python-docs-zh-tw/library/codecs.html#streamrecoder-objects
編碼和 Unicodehttps://python.github.io/python-docs-zh-tw/library/codecs.html#encodings-and-unicode
標準編碼https://python.github.io/python-docs-zh-tw/library/codecs.html#standard-encodings
Python Specific Encodingshttps://python.github.io/python-docs-zh-tw/library/codecs.html#python-specific-encodings
Text Encodingshttps://python.github.io/python-docs-zh-tw/library/codecs.html#text-encodings
Binary Transformshttps://python.github.io/python-docs-zh-tw/library/codecs.html#binary-transforms
Standalone Codec Functionshttps://python.github.io/python-docs-zh-tw/library/codecs.html#standalone-codec-functions
Text Transformshttps://python.github.io/python-docs-zh-tw/library/codecs.html#text-transforms
encodings --- Encodings packagehttps://python.github.io/python-docs-zh-tw/library/codecs.html#module-encodings
encodings.idna --- Internationalized Domain Names in Applicationshttps://python.github.io/python-docs-zh-tw/library/codecs.html#module-encodings.idna
encodings.mbcs --- Windows ANSI 碼頁https://python.github.io/python-docs-zh-tw/library/codecs.html#module-encodings.mbcs
encodings.utf_8_sig --- UTF-8 codec with BOM signaturehttps://python.github.io/python-docs-zh-tw/library/codecs.html#module-encodings.utf_8_sig
struct --- 將位元組直譯為打包起來的二進位資料https://python.github.io/python-docs-zh-tw/library/struct.html
資料型別https://python.github.io/python-docs-zh-tw/library/datatypes.html
回報錯誤https://python.github.io/python-docs-zh-tw/bugs.html
顯示原始碼 https://github.com/python/cpython/blob/main/Doc/library/codecs.rst?plain=1
索引https://python.github.io/python-docs-zh-tw/genindex.html
模組https://python.github.io/python-docs-zh-tw/py-modindex.html
下一頁https://python.github.io/python-docs-zh-tw/library/datatypes.html
上一頁https://python.github.io/python-docs-zh-tw/library/struct.html
Pythonhttps://www.python.org/
3.14.0 Documentationhttps://python.github.io/python-docs-zh-tw/index.html
Python 標準函式庫 (Standard Library)https://python.github.io/python-docs-zh-tw/library/index.html
二進位資料服務https://python.github.io/python-docs-zh-tw/library/binary.html
codecs --- 編解碼器註冊表和基底類別https://python.github.io/python-docs-zh-tw/library/codecs.html
版權所有https://python.github.io/python-docs-zh-tw/copyright.html
歷史與授權條款https://python.github.io/license.html
敬請捐贈。https://www.python.org/psf/donations/
發現 bughttps://python.github.io/bugs.html
Sphinxhttps://www.sphinx-doc.org/

Viewport: width=device-width, initial-scale=1.0


URLs of crawlers that visited me.