cxl.py   和   lgz.py    这是在lgz里面引用cxl里面的东西,两种方法 

#方法一
import cxl
h = cxl.hello()
h.f()

#方法二
from cxl import hello
h = hello()
h.f()