Python False కీలకపదం
నిర్వచనం మరియు ఉపయోగం
False కీలకపదం బౌలియన్ విలువను, పోలన గణన ఫలితాన్ని అనిట్టుకుంటుంది.
False కీలకపదం సమానంగా 0 (True సమానంగా 1).
మరింత ఉదాహరణలు
ఉదాహరణ
ఇతర తప్పనిసరిగా False పోలనలు:
print(5 > 6) print(4 in [1,2,3]) print("hello" is "goodbye") print(5 == 6) print(5 == 6 or 6 == 7) print(5 == 6 and 6 == 7) print("hello" is not "hello") print(not(5 == 5)) print(3 not in [1,2,3])