def divZ(n): return [i for i in [x for x in range(-n,n+1) if x!=0] if n%i==0]