fork download
  1. x=True
  2. y=False
  3. print(x and y)
  4. print(x or y)
  5. print(not x)
  6.  
  7. print(10>5 and 10<20)
Success #stdin #stdout 0.02s 9112KB
stdin
Standard input is empty
stdout
False
True
False
True