fork download
  1. 리스트 = [3, -20, -3, 44]
  2. for 음수 in 리스트:
  3. if 음수<0:
  4. print(음수)
Success #stdin #stdout 0.08s 14052KB
stdin
Standard input is empty
stdout
-20
-3