blob: 77a4eac1c1db2aec33e270d98a9e42dda611ffa5 (
plain)
1
2
3
4
5
6
7
|
"""
categories: Types,str
description: str(...) with keywords not implemented
cause: Unknown
workaround: Input the encoding format directly. eg ``print(bytes('abc', 'utf-8'))``
"""
print(str(b"abc", encoding="utf8"))
|