码迷,mamicode.com
首页 > 编程语言 > 详细

python3.1for循环及应用

时间:2019-06-29 19:23:38      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:ict   集合   image   int   循环   range   技术   value   for   

#给定范围,进行循环
for i in range (0,5):
print(i)

#对序列进行遍历
list1=[1,2,3,4,5]
for i in list1:
print(i+1)


#对元组进行遍历
tuple1=(5,6,7,8,9,10)
for i in tuple1:
print(i)


#对字典key进行遍历
dict1={"name":"小明","age":"18"}
for i in dict1:
print(i)
#对字典value进行遍历
for i in dict1:
print(dict1[i])


#对集合进行遍历
jihe={"a","b","c"}
for i in jihe:
print(i)

技术图片

 

python3.1for循环及应用

标签:ict   集合   image   int   循环   range   技术   value   for   

原文地址:https://www.cnblogs.com/lma0702/p/11107355.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!