在Python中,可以使用unicode_literal
模塊來導入unicode編碼。示例如下:
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
# 使用unicode編碼字符串
s = "你好,世界!"
# 打印輸出
print(s)
在上面的示例中,from __future__ import unicode_literals
語句用于導入unicode編碼,使得在Python 2.x版本中可以直接使用Unicode編碼的字符串。