python中vars函数是什么意思?

图片[1]-python中vars函数是什么意思?-uusu优素-乐高,模型,3d打印,编程

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

1、vars()函数

以字典形式返回参数中每个成员的当前值;

如果vars函数没有带参数,那么它会返回包含当前局部命名空间中所有成员的当前值的一个字典;

简单的说就是对象转化为dict(字典)对象。

2、语法

vars([object])

3、参数

object — 对象

4、返回值

返回对象object的属性和属性值的字典对象。

5、使用实例

args=var(self.opt)
file_name=os.path.join(expr_dir,'opt.txt')
withopen(file_name,'wt')asopt_file:
opt_file.write('-----------Opinions---------------\n')
fork,vinsorted(args.items())
opt_file.write('{}:{}'.format(str(k),str(v)))
#opt_file.write('{}:{}'.format(k,v))
opt_file.write('-------------End------------------\n')
原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞7 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容