- 1
Mnm whats thar
i did not understand
1 Respuesta
+ 2
the first operator is exponential..
ex: print(2**3)
output: 8
2*2*2=8
** is considered as exponential operator.
the second operator is floor division
this operator gives u the quotient..ex:
print(20//6)
output: 3
if u do normal divide in python.. u get 3.3333
but in floor division the Output will be just 3
and last operator is %
this operator gives you the remainder 2
print(20%6)