Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Short circuit

(5 < 3) and print("hey")

False

(5 > 3) or print("hey")

True

(5 < 3) or print("hey")

hey

(5 > 3) and print("hey")

hey