+ 1
Whats stands "!" In coding
3 Respuestas
+ 3
! Stands for 'not' in most of the programing languages . Like:
if 1 != 2:
print('not equal')
>>>not equal
+ 1
Thanks i understood :)
+ 1
In many programming languages (except in Python) ! also stands for negation opetation, which turns a boolean value into the opposite one.
!true ---> false
!false ---> true