本文教程操作环境: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') with open(file_name,'wt') as opt_file: opt_file.write('-----------Opinions---------------\n') for k,v in sorted(args.items()) opt_file.write('{}:{}'.format(str(k),str(v))) # opt_file.write('{}:{}'.format(k,v)) opt_file.write('-------------End------------------\n')
以上就是python中vars()函数的介绍,下次如果需要字典形式的编码,可以直接使用vars()函数哦~