5.3 for循环

for 循环主要用来遍历列表、字符串、文件等进行操作,默认是循环到最后一个元素为止。

test=dict(a=1,b=2,c=3,d=4)

for i,j in test.items():

   print(i,j)


返回结果:

a 1

b 2

c 3

d 4


上一篇:linux常见错误


下一篇:Modelsim的demo入门教程