Python 2.7中的重音字符

时间:2018-07-21 17:00:45

标签: python python-2.7 powershell

我刚刚开始学习Python(我正在使用python 2.7),并且从一些简单的印刷开始。我试图添加带重音的字符,但文件最初没有编译。我在代码的第一行添加了:#--编码:utf-8--。我目前看起来像这样:

# -*- coding: utf-8 -*-
# octothorpe character comments lines
    print "Hello World!"
    print "Hello Again"
    print "I like typing this."
    print "This is fun."
    print 'Yay! Printing.'
    print "I'd much rather you 'not'."
    print 'I "said" do not touch this.'
    print "olá"

我正在使用SublimeText。使用Windows Powershell运行我的代码,我得到了:

enter image description here

我看不到字符“á”。 但是,如果我使用终端进行编码,如下所示:

enter image description here 为什么“á”现在正确显示而不是以前正确显示?

0 个答案:

没有答案