python_setattr_learning
2022/1/17 1:33:31
本文主要是介绍python_setattr_learning,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
# author: Roy.G a="self,name,color,age,food" b=a.split(",") # 以, 分开字符串 for i in b: print("self."+i+"="+i) class animal(object): def __init__(self,name,color,age,food): self.name = name self.color = color self.age = age self.food = food def walk(self): print("%s walk."%self.name) def eat(self): print("%s eating"%self.name) dog=animal("dog","green",10,"meat") dog.walk() print(hasattr(dog,"walk")) #determine dog if has walk choice=input(":>>") if hasattr(dog,choice): getattr(dog,choice)() #brackets means invoking the function if not hasattr(dog,choice): print("wrong choice") # setattr(dog,choice,eat) # eat have no brackets ,don't invoke the eat # getattr(dog,choice)(dog) setattr(dog,choice,38) print(getattr(dog,choice)) # if seattr is not a def ,it becomes a attribue. print("happy is",dog.happy) delattr(dog,"happy") print(dog.happy)
这篇关于python_setattr_learning的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-24Python编程基础详解
- 2024-11-21Python编程基础教程
- 2024-11-20Python编程基础与实践
- 2024-11-20Python编程基础与高级应用
- 2024-11-19Python 基础编程教程
- 2024-11-19Python基础入门教程
- 2024-11-17在FastAPI项目中添加一个生产级别的数据库——本地环境搭建指南
- 2024-11-16`PyMuPDF4LLM`:提取PDF数据的神器
- 2024-11-16四种数据科学Web界面框架快速对比:Rio、Reflex、Streamlit和Plotly Dash
- 2024-11-14获取参数学习:Python编程入门教程