I have 3 Files
A.py
import pandas as pd
import C as c
dfresult = pd.read_csv("result.csv",sep=",")
figure = c.figure
B.py
import A
dfresult = A.dfresult
C.Py
import B as b
dfresult = b.dfresult
...creating figures
if i use B to read in the data and dont import A in B it is working, if i import the A file (my startfile) i get allways module A has no attribute dfresult and so on
Please explain why?