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

二十八 Python的for 循环

时间:2018-10-27 21:03:48      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:默认   car   div   str   16px   res   size   lis   int   

1: for 循环可以循环如下类型:

my_string = "abcabc"        // 字符串类型
for c in my_string:
    print(c, end= )

cars = [aa,bb,cc]     // list类型
for car in cars:
    print(car)

d = {one:1, "tow":2}      // 字典类型, 
for key in d:               // 默认是key
    print(key + " " + str(d[key]))

t = (1, 2, 3)               // 元组
for item in t:
print(item)

 2 循环多个

  zip函数:打包

l1 = [1, 2, 3]
l2 = [6, 7, 8, 20]
for k in zip(l1, l2):
    print(k)

result:

  (1, 6)
  (2, 7)
  (3, 8)

 

二十八 Python的for 循环

标签:默认   car   div   str   16px   res   size   lis   int   

原文地址:https://www.cnblogs.com/liufei1983/p/9863057.html

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