有句话说烂了, Python 中一切皆是对象
先定义一个空的函数体;
def user():
pass
然后像直接使用类的属性一样操作:
user.name = 'xiaojieluoff'
user.age = 18
print(user.name, user.age)
有句话说烂了, Python 中一切皆是对象
先定义一个空的函数体;
def user():
pass
然后像直接使用类的属性一样操作:
user.name = 'xiaojieluoff'
user.age = 18
print(user.name, user.age)
本文标题:在 Python 中把函数当成字典使用
本文链接:https://www.haomeiwen.com/subject/evnzuxtx.html
网友评论