In [1]:
8<9
Out[1]:
In [2]:
type(8<9)
Out[2]:
In [3]:
8>9
Out[3]:
In [4]:
a=TRUE
In [5]:
a=True
In [6]:
a
Out[6]:
In [11]:
#==
# !=
# <>
# < ,> ,<= ,>= ,and, or ,not,
In [12]:
9<=10
Out[12]:
In [38]:
a=16
b=13
c=12
d=a<b
e=c>b
f=a>c
In [39]:
print("the value of D is" , d ,"the value of e is" , e )
In [41]:
d and e and f
Out[41]:
In [42]:
d
Out[42]:
In [43]:
not(d)
Out[43]:
No comments:
Post a Comment