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 Chandan
Recipients Chandan, docs@python
Date 2019-07-01.08:19:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1561969179.72.0.936663483495.issue37464@roundup.psfhosted.org>
In-reply-to
Content
a=1.0
b=0.0
c=0.0
if (a> d and b):
     print('hi')
else:
     print("bye")

its going to else part
a=1.0
b=0.1
c=0.2
then its going to if part
a==1.0
b=0
c=0.1
then again its going to else part
History
Date User Action Args
2019-07-01 08:19:39Chandansetrecipients: + Chandan, docs@python
2019-07-01 08:19:39Chandansetmessageid: <1561969179.72.0.936663483495.issue37464@roundup.psfhosted.org>
2019-07-01 08:19:39Chandanlinkissue37464 messages
2019-07-01 08:19:39Chandancreate