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