fork(2) download
  1. x = [ "sdf", "sd", None ]
  2. print( [ k for k in x if x is not None ] )
Success #stdin #stdout 0.02s 8688KB
stdin
Standard input is empty
stdout
['sdf', 'sd', None]