Skip to content

Instantly share code, notes, and snippets.

@DaveIW2034
Last active March 13, 2019 14:47
Show Gist options
  • Save DaveIW2034/3a66f79ce17b1080aca80a28cc8fb3e8 to your computer and use it in GitHub Desktop.
Save DaveIW2034/3a66f79ce17b1080aca80a28cc8fb3e8 to your computer and use it in GitHub Desktop.
import_run.py
"""
from case import func
从 case 引入 func 时, func() 将会被执行.
"""
"""
case.py
def func():
print 'excute func'
func()
"""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment