This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author kozmof
Recipients kozmof
Date 2015-12-24.06:58:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1450940331.94.0.479446951644.issue25938@psf.upfronthosting.co.za>
In-reply-to
Content
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=================
History
Date User Action Args
2015-12-24 06:58:51kozmofsetrecipients: + kozmof
2015-12-24 06:58:51kozmofsetmessageid: <1450940331.94.0.479446951644.issue25938@psf.upfronthosting.co.za>
2015-12-24 06:58:51kozmoflinkissue25938 messages
2015-12-24 06:58:51kozmofcreate