fork download
  1. status = None
  2.  
  3. r = {
  4. "Status": status.string[:len(status.string)-3] if status is not None else "Not listed"
  5. }
  6.  
  7. print(r)
Success #stdin #stdout 0.01s 9016KB
stdin
Standard input is empty
stdout
{'Status': 'Not listed'}