I don't understand the reason why if I try to pass a tkinter entry's value between two python scripts, I get '!entry' instead the value.
First script:
from tkinter import *
w=Tk()
def send(e):
import snd
e=Entry(w)
e.pack()
b=Button(w,command=lambda:send(e.get()))
b.pack()
w.mainloop()
Second script:
from __main__ import *
print(e)