0
What is the mean (!)
What is the mean (!)
2 Answers
+ 1
It's not operator
like a!=b
which means a is not equal to b
or in bitwise
!a
which means not of a
like if a = 0
then !a is 1
0
Not. Like:
if (!reachedGoal()):
#Do Blablabla......
What is the mean (!)