初学python 对象数组变量遍历

定义类 people

包含2个变量,1个函数

class people:
	idno = "";
	name = "";
#	def __init__(自引用参数名,idno,name):
#声明init函数后,必会被调用。如果想要无参调用,就需要给init设置参数默认值
	def __init__(this,idno,name):
		this.idno = idno;
		this.name = name;
	
	def describe(this):
		print("------parent")
		print(this.idno)
		print(this.name)

定义一个对象数组,并进行赋值。

使用for访问数组,再用for 访问对象转字典后的item(),直接取 key 和 value

ps = [people("13000" + str(i) ,"tom" + str(i) ) for i in range(10)]

ct = -1

for x in ps:#遍历数组内 对象
	ct+=1
	print(str(ct) + "=======current people=======")
	for k,n in x.__dict__.items():
		print(k + "=" + n)
	print("===========next people=============")

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值