码迷,mamicode.com
首页 > 编程语言 > 详细

python-反射案例讲解

时间:2019-04-18 12:14:24      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:imp   def   odi   访问   python   mode   print   style   pre   

login.py
#!/usr/bin/dev python
# coding:utf-8


def index():
print u‘欢迎访问xx网站首页‘

def login():
print u‘登录成功‘

def logout():
print u‘退出登录‘

class Person(object):#新式类
def __init__(self):
pass
def info(self):
print u‘我是Person类的info的方法‘



url = raw_input(u‘请输入路由地址:\n‘)
target_models,target_function = url.split(‘/‘)
m =__import__(target_models)
if hasattr(m,target_function):
target_function = getattr(m,target_function)
target_function()
else:
print ‘Not Found 404 Page‘





login/login
login/logout
 

python-反射案例讲解

标签:imp   def   odi   访问   python   mode   print   style   pre   

原文地址:https://www.cnblogs.com/hyzhang/p/10728774.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!