New submission from Kozo Oeda:

if sentence doesn't work well with input() in Python 3(I confirmed 3.4.3 and 
3.5.1 on OS X 10.10.5). I also confirmed Python 2.7.11 works well. I think the 
code which I wrote in the lower section explains what happened enough. 

I couldn't get the proper component so I selected Interpreter Core temporally.
Thanks 

#============Code Start=================
#Python 3.4.3 and 3.5.1 on OS X 10.10.5

def test(a):
        if a == 0:
                print("0")
        else:
                print("not 0")

a = input()
print(a)
test(a)

# Input 
# 0 
#
# Output
# 0
# 0
# not 0

# Input
# 1
#
# Output
# 1
# 1
# not 0
#============Code End=================

----------
components: Interpreter Core
messages: 256954
nosy: kozmof
priority: normal
severity: normal
status: open
title: if sentence doesn't work with input()
versions: Python 3.5

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue25938>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to