# bytes object
b = b"example"# str object
s = "example"# str to bytes
bytes(s, encoding = "utf8")
# bytes to str
str(b, encoding = "utf-8")
# an alternative method # str to bytes str.encode(s)
# bytes to str
bytes.decode(b)
posted on
2019-10-17 12:25lshan
阅读(549)
评论(0)
编辑收藏举报