hey I have this file in py, it is called Numbers.py:
Numbers=[1,3,5,7]
for i in Numbers:
    if i%2==0:
        print(i)
    else: 
        i%2==1
    print(i)
for l in Numbers:
        if l>1 & i%l==1:
            print(l)
how can I import it in another one?
 
     
    