fork download
  1. var = int(True) * (True-False) / True
  2. try:
  3. var = var/10
  4. except ZeroDivisionError:
  5. print('Nicely ',end='')
  6. else:
  7. print('Done! ',end='')
  8. finally:
  9. print('Well ',end='')
Success #stdin #stdout 0.02s 9232KB
stdin
Standard input is empty
stdout
Done! Well