I was wondering if anyone helps me in the following case..?
There're two prgs A.py and B.py
A.py has two classes
class x
class y
and class y has some print statements.
I want to import 'class x' to B.py and using the following statement in B.py
from A.py import x
Now, When I execute B.py , it is printing the statements from class y. How does it happen..? Is I am doing anything wrong..? Please help me..