Wednesday, August 3, 2022

Operator Practice in Python

Operator in Python
In [4]:
x=29.0
y=13
z=2
p=0.5
q=12.79
i=13
j=29.0
k=y-11
In [5]:
x/y
Out[5]:
2.230769230769231
In [6]:
x//4
Out[6]:
7.0
In [7]:
y-i+p
Out[7]:
0.5
In [8]:
y**z
Out[8]:
169
In [9]:
y%z
Out[9]:
1
In [10]:
x/j
Out[10]:
1.0
In [11]:
q%p
Out[11]:
0.28999999999999915
In [12]:
y+z%4
Out[12]:
15
In [13]:
(y+z)%4
Out[13]:
3
In [14]:
y+(z%4)
Out[14]:
15
In [15]:
y*x/z
Out[15]:
188.5
In [17]:
r=p+z-x/y*y**z//x%(p+z)
r
Out[17]:
2.0
In [18]:
4**3**z
Out[18]:
262144
In [19]:
2**2**3
Out[19]:
256
In [20]:
4**3
Out[20]:
64
In [21]:
2**2
Out[21]:
4
In [22]:
2**8
Out[22]:
256
In [1]:
x=29.0
y=13
z=2
p=0.5
q=12.79
i=13
j=29.0
k=y-11
In [2]:
a=''
b=''
c='great'
d='Great'
e='GREAT'
f='Great'
g='GREAT'
h='great'
In [3]:
y>p*26
Out[3]:
False
In [4]:
y==p*26
Out[4]:
True
In [5]:
print(y,p*26)
13 13.0
In [6]:
(y>p)*26
Out[6]:
26
In [7]:
(y<p)*26
Out[7]:
0
In [8]:
True*26
Out[8]:
26
In [9]:
False*26
Out[9]:
0
In [10]:
x<=y<x+y
Out[10]:
False
In [11]:
y<=x+y
Out[11]:
True
In [12]:
x<=True
Out[12]:
False
In [13]:
x<=y and y<x+y
Out[13]:
False
In [14]:
x//y
Out[14]:
2.0
In [15]:
x//y<p*20
Out[15]:
True
In [16]:
p*20
Out[16]:
10.0
In [17]:
x!=y*z+3
Out[17]:
False
In [18]:
x
Out[18]:
29.0
In [19]:
y*z+3
Out[19]:
29
In [20]:
x==y*z+3
Out[20]:
True
In [21]:
x-3!=y*2
Out[21]:
False
In [22]:
x-3==y*2
Out[22]:
True
In [23]:
x-3
Out[23]:
26.0
In [24]:
y*2
Out[24]:
26
In [25]:
x-(3!=y)*2
Out[25]:
27.0
In [26]:
3!=y
Out[26]:
True
In [27]:
x-True*2
Out[27]:
27.0
In [28]:
a==b
Out[28]:
True
In [29]:
c==d
Out[29]:
False
In [30]:
d==g
Out[30]:
False
In [31]:
f==d
Out[31]:
True
In [32]:
e==g
Out[32]:
True
In [33]:
h==c
Out[33]:
True
In [34]:
#again practice more 
x=29.0
y=13
z=2
p=0.5
q=12.79
i=13
j=29.0
k=y-11
a=''
b=''
c='great'
d='Great'
e='GREAT'
f='Great'
g='GREAT'
h='great'
In [35]:
y==13
Out[35]:
True
In [36]:
y==i
Out[36]:
True
In [37]:
l=3+4.5j
In [38]:
l
Out[38]:
(3+4.5j)
In [40]:
m=(3+4.5j)
In [41]:
m
Out[41]:
(3+4.5j)
In [42]:
y is i
Out[42]:
True
In [43]:
y==i
Out[43]:
True
In [44]:
g==e
Out[44]:
True
In [45]:
e is not g
Out[45]:
False
In [46]:
k==z
Out[46]:
True
In [47]:
z is not k
Out[47]:
False
In [48]:
l==m
Out[48]:
True
In [49]:
l is m
Out[49]:
False
In [50]:
z is k
Out[50]:
True
In [51]:
#Logical Operator Practice
x=29.0
y=13
z=2
p=0.5
q=12.79
i=13
j=29.0
k=y-11
a=''
b=''
c='great'
d='Great'
e='GREAT'
f='Great'
g='GREAT'
h='great'
In [52]:
l=3+4.5j
m=3+4.5j
In [53]:
x>y and y>z
Out[53]:
True
In [54]:
x>y or y>z
Out[54]:
True
In [55]:
x<y or y>z
Out[55]:
True
In [56]:
not x>y
Out[56]:
False
In [57]:
not x>y or y>z
Out[57]:
True
In [58]:
x>y
Out[58]:
True
In [59]:
not x>y
Out[59]:
False
In [60]:
y>z
Out[60]:
True
In [61]:
not(x>y or y>z)
Out[61]:
False
In [62]:
x-y*2>y*2
Out[62]:
False
In [63]:
x-y*2>y*2 or y*p>y
Out[63]:
False
In [64]:
x-y*2>y*2 and y*p>y
Out[64]:
False
In [65]:
x-y*2
Out[65]:
3.0
In [66]:
y*2
Out[66]:
26
In [67]:
x>y>z
Out[67]:
True
In [68]:
i<j<k
Out[68]:
False
In [69]:
y&z
Out[69]:
0
In [70]:
y|z
Out[70]:
15
In [71]:
~y
Out[71]:
-14
In [ ]:
 

No comments:

Post a Comment