Was wird durch print angezeigt?
A=1; B=1; C=1
not A ==1 and C==1
- true
- false
not A ==1 and B==1
- true
- false
not A ==1 or B==1
- true
- false
A ==1 or B==1
- true
- false
A ==1 or not B==1
- true
- false
A!=1 and B!=1
- true
- false
A!=1 or B!=1
- true
- false
A!=1 or B==1
- true
- false
A==1 or (B==1 and C==1)
- true
- false
(A==1 or B==1) and C!=1
- true
- false
not A==1 and not B==1 and not C==1
- true
- false
A==1 and B==1 and not C==1
- true
- false
A==1 and B==1 or not C==1
- true
- false