python-反射案例讲解
Posted 午间小憩
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python-反射案例讲解相关的知识,希望对你有一定的参考价值。
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‘请输入路由地址: ‘)
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-反射案例讲解的主要内容,如果未能解决你的问题,请参考以下文章
初学python100例-案例35 数字反转 少儿编程python编程实例讲解
初学python100例-案例35 数字反转 少儿编程python编程实例讲解