What do you understand by following import statement :
from x import a, b, c
Question :
What do you understand by following import statement :
from x import a, b, c
It import the module X, and creates references in the current namespace to the given objects.
Or in other words, we can now use a, b and c in our program.