本文整理匯總了Python中django.utils.six.unichr方法的典型用法代碼示例。如果您正苦於以下問題:Python six.unichr方法的具體用法?Python six.unichr怎麽用?Python six.unichr使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類django.utils.six
的用法示例。
在下文中一共展示了six.unichr方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: _replace_entity
# 需要導入模塊: from django.utils import six [as 別名]
# 或者: from django.utils.six import unichr [as 別名]
def _replace_entity(match):
text = match.group(1)
if text[0] == '#':
text = text[1:]
try:
if text[0] in 'xX':
c = int(text[1:], 16)
else:
c = int(text)
return six.unichr(c)
except ValueError:
return match.group(0)
else:
try:
return six.unichr(html_entities.name2codepoint[text])
except (ValueError, KeyError):
return match.group(0)
示例2: set_row_color
# 需要導入模塊: from django.utils import six [as 別名]
# 或者: from django.utils.six import unichr [as 別名]
def set_row_color(self, sheet, row, header, color='FF000000', bgcolor='FFFFFFFF'):
for idx, item in enumerate(header):
sheet[str(six.unichr(idx + ord('A'))) + str(row)].style = self.get_cell_style(color=color, bgcolor=bgcolor)
return row