python中的包与模块

'''模块与模块之间的调用''' import first #调用整个变量 print(first.Index) # #调用函数 print(first.hello()) # per = first.Index() per.hello() from first import * # per = Index() per.hello() # hello() #包与包之间的调用 fro...
posted @ 2019-01-02 15:13  飘零0  阅读(100)  评论(0编辑  收藏  举报