blob: ade83d0a709eb0af96030033f9cdff90b70aa39b (
plain)
1
2
3
4
5
6
7
|
"""
categories: Types,bytes
description: bytes() with keywords not implemented
cause: Unknown
workaround: Pass the encoding as a positional parameter, e.g. ``print(bytes('abc', 'utf-8'))``
"""
print(bytes("abc", encoding="utf8"))
|