Valori Booleani e Espressioni Booleane




(ch05_1)

Note

I valori Boolean non sono stringhe!

True e False sono gli unici due valori di tipo bool.




(ch05_1a)




(ch05_2)

L’operatore == è uno dei operatori di confronto; Gli altri sono:

x != y               # x is not equal to y
x > y                # x is greater than y
x < y                # x is less than y
x >= y               # x is greater than or equal to y
x <= y               # x is less than or equal to y

Ricordiamoci che = è l’operatore di assegnamento e == l’operatore di confronto. Inoltre =< e => non esistono.

Next Section - Operatori Logici