[docs] [issue37464] multiple comparison

Chandan Kumar report at bugs.python.org
Mon Jul 1 04:19:39 EDT 2019


New submission from Chandan Kumar <chandankumar948 at gmail.com>:

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

----------
assignee: docs at python
components: Documentation
messages: 346972
nosy: Chandan, docs at python
priority: normal
severity: normal
status: open
title: multiple comparison
type: enhancement
versions: Python 3.7

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue37464>
_______________________________________


More information about the docs mailing list