fork download
  1. v = 2
  2. try:
  3. 1 < ''
  4. except TypeError:
  5. v = v + 1
  6. print(v)
  7.  
Success #stdin #stdout 0.02s 9112KB
stdin
Standard input is empty
stdout
3