python3反射
Posted alsoalso
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3反射相关的知识,希望对你有一定的参考价值。
class Cmd:
# def __init__(self,name):
# self.name = name
def run(self):
while 1:
cmd = input(‘>>清输入命令>>‘).strip()
if hasattr(self,cmd):
func = getattr(self,cmd)
func()
def ls(self):
print(‘ls--->func‘)
def pwd(self):
print(‘pwd--->func‘)
def cat(self):
print(‘cat--->func‘)
cmd = Cmd()
cmd.run()
以上是关于python3反射的主要内容,如果未能解决你的问题,请参考以下文章
python3全栈开发-内置函数补充,反射,元类,__str__,__del__,exec,type,__call__方法