fork(1) download
  1. def download():
  2. import zipfile
  3. from zipfile import BadZipFile
  4. try:
  5. print('hello')
  6. except BadZipFile as e:
  7. print('world')
  8.  
  9. download()
  10.  
Success #stdin #stdout 0.01s 37360KB
stdin
Standard input is empty
stdout
hello