fork download
  1. studends = {
  2. "name":"kareem",
  3. "age":15,
  4. "score":45
  5. }
  6.  
  7. if studends["score"] >= 50:
  8. print("pass")
  9. else:
  10. print("fail")
Success #stdin #stdout 0.02s 9212KB
stdin
Standard input is empty
stdout
fail