标签:python3 usr utf-8 class pytho bin value byte pre
#!/usr/bin/env python # -*- coding: utf-8 -*- def to_str(bytes_or_str): if isinstance(bytes_or_str, bytes): value = bytes_or_str.decode(‘utf-8‘) else: value = bytes_or_str return value #Instance of str
#!/usr/bin/env python # -*- coding: utf-8 -*- def to_str(bytes_or_str): if isinstance(bytes_or_str, str): value = bytes_or_str.encode(‘utf-8‘) else: value = bytes_or_str return value #Instance of bytes
标签:python3 usr utf-8 class pytho bin value byte pre
原文地址:http://www.cnblogs.com/chengd/p/7491041.html