有如下Python程序段:
stu=dict(name="张明明",age=10) stu['sex']="男" for i in stu.values(): print(i,end=" ")
执行程序后,输出的结果为?
name age sex
张明明 10 男
name age
张明明 10