I have read there are three ways for coding multi-line imports in python
With slashes:
from Tkinter import Tk, Frame, Button, Entry, Canvas, Text, \
LEFT, DISABLED, NORMAL, RIDGE, END
Duplicating senteces:
from Tkinter import Tk, Frame, Button, Entry, Canvas, Text
from Tkinter import LEFT, DISABLED, NORMAL, RIDGE, END
With parenthesis:
from Tkinter import (Tk, Frame, Button, Entry, Canvas, Text,
LEFT, DISABLED, NORMAL, RIDGE, END)
Is there a recomended format or a more elegant way for this statements?

from Tkinter import *? – Inbar Rose Jan 17 at 10:27from data.forms import AddressEmbeddedField, PhoneEmbeddedField, MailEmbeddedField, \ WebEmbeddedFieldbut don't want to import all the rest of embedded fields in data.forms – Manuel Alvarez Jan 17 at 10:31from Tkinter import *? I'm not. And IDEs won't know if these names (maybe), thus they aren't able to tell if you entered an invalid name. – Thorsten Kranz Jan 17 at 10:32