在Eclipse Pydev控制台和Idle中打印Unicode

在Eclipse Pydev控制台和Idle中打印Unicode,第1张

在Eclipse Pydev控制台和Idle中打印Unicode

对于Eclipse Unipre控制台支持:

  1. 添加
    -Dfile.encoding=UTF-8
    eclipse.ini
    eclipse安装目录中。
  2. 日食中-
    RunRun ConfigurationsPython RunconfigurationCommon
    确保选择UTF-8
  3. 在日食中-
    WindowPreferencesGeneralWorkspaceText file encoding
    确保选择了UTF-8
  4. [python install path]Libsite.py
    -更改
    encoding = "ascii"
    encoding = "utf-8"
  5. 确保您在Eclipse中使用支持Unipre的字体-
    WindowPreferencesAppearanceColors and FontsDebugConsole fontEdit

在安装中,我完成了以上所有 *** 作:

print(u"שלום עולם")         # Doesn't workprint("שלום עולם")          # Works

对于Django模型:

print(my_model.my_field)      # Doesn't workprint(my_model.my_field.enpre('utf-8')) # Works


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5644959.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存