fork(1) download
  1. def comm(grade):
  2. match grade:
  3. case "1":
  4. print("Bad")
  5. case "2":
  6. print("Not good")
  7. case "3":
  8. print("Okay")
  9. case "4":
  10. print("Good")
  11. case "5":
  12. print("Awesome")
  13.  
  14. comm(2)
Success #stdin #stdout 0.11s 14088KB
stdin
Standard input is empty
stdout
Standard output is empty