在python中评估用户输入字符串时出错

时间:2013-04-24 08:11:20

标签: python powershell python-3.x notepad++ python-idle

我使用notepad ++和windows powershell来编辑和执行python 3.2程序。 这是两个案例

  1. 案例1

    w = 'a'
    u = 'a'
    print (u == w)
    

    输出:True

  2. 案例2

    w = "a"
    u = input('enter string ') #user enters a
    print (u == w)
    

    输出:False

  3. 我无法弄清楚是什么导致了这个错误 两种情况的OUTPUT在IDLE中都是True,但在记事本++和PowerShell组合的情况下它不匹配。 有人可以帮帮我吗?

0 个答案:

没有答案