def puts(x): print x [puts(x) for x in [1, 2, 3, 4, 5] if x % 2 == 0] # これはok [print (x) for x in [1, 2, 3, 4, 5] if x % 2 == 0] # これは不可
def puts(x): print x [puts(x) for x in [1, 2, 3, 4, 5] if x % 2 == 0] # これはok [print (x) for x in [1, 2, 3, 4, 5] if x % 2 == 0] # これは不可