【问题标题】:Is there a way to specify which Unicode format is used in unicode encoding in python 2.7?有没有办法指定在 python 2.7 的 unicode 编码中使用哪种 Unicode 格式?
【发布时间】:2023-04-02 10:39:01
【问题描述】:

所以我想在我的 python 2.7 脚本中用 Unicode 编码一些值。我想知道是否可以指定要使用的 Unicode 类型,即 UTF-8 与 UTF-32。除此之外,python 2.7 支持哪些编码有什么限制,默认编码是如何确定的?

【问题讨论】:

  • 你的意思是源文件编码还是内存中python字符串的编码?
  • 一个python字符串

标签:
python
python-2.7
unicode