python学习2

1.新建自己的模块

def sayhi():
print ('Hi, this is mymodule speaking.')


Version = '0.1'

调用自己的模块

import mymodule
mymodule.sayhi()
print ('Version ', mymodule.Version)

2.dir的使用

 

posted @ 2017-11-18 15:46  Carzy_Learner  阅读(82)  评论(0编辑  收藏  举报