Skip to content

Instantly share code, notes, and snippets.

@gaoconghui
gaoconghui / useful_util.py
Last active June 13, 2018 08:20
一些常用的方法
# -*- coding: utf-8 -*-
def ensure_unicode(s):
if not s:
return s
if isinstance(s, unicode):
return s
elif isinstance(s, str):
return s.decode('utf-8')
else: