'''模块与模块之间的调用'''
import first
#调用整个变量
print(first.Index)
# #调用函数
print(first.hello())
#
per = first.Index()
per.hello() from first import *
#
per = Index()
per.hello()
#
hello() #包与包之间的调用
from day2.login import *
main()
'''模块与模块之间的调用'''
import first
#调用整个变量
print(first.Index)
# #调用函数
print(first.hello())
#
per = first.Index()
per.hello() from first import *
#
per = Index()
per.hello()
#
hello() #包与包之间的调用
from day2.login import *
main()