+ 1
Why in Boolean "True and False" is right answer but "true and false" is wrong ?
Why this thing happened ?
1 Resposta
+ 5
Boolean values - 'True, False' are case sensitive based on the language, as they are keywords/ Reserved words.
In C++ - true, false are supported bool values.
In Python - True, False are supported bool values.