博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python中for循环的用法
阅读量:5215 次
发布时间:2019-06-14

本文共 1102 字,大约阅读时间需要 3 分钟。

Python for循环可以遍历任何序列的项目,如一个列表或者一个字符串。

语法模式:for iterating_var in sequence:

in 字面意思,从某个集合(列表等)里顺次取值

#遍历数字序列the_count=[1,2,3,4,5]for number in the_count:    print(f"This is count {number}")
输出结果:

This is count 1

This is count 2
This is count 3
This is count 4
This is count 5 

#遍历一维字符串数组fruits=['apples','oranges','dimes','quarters']for fruit in fruits:    print(f"A fruit of type:{fruit}") 输出结果为:

A fruit of type:apples

A fruit of type:oranges
A fruit of type:dimes
A fruit of type:quarters

#遍历字符串list_python='python'for j in list_python:    print(f"{j}")输出结果为:

p

y
t
h
o
n

#通过序列索引迭代 elements=[]#列表为空 for i in range(0,6):#012345     print(f"Adding {i} to the list.")     elements.append(i)#得到elements=[0,1,2,3,4,5]     #len(elements)长为6,range(len(elements))==range(6) for i in range(len(elements)):     print(f"Elemnet was:{i}")
输出结果为:

Adding 0 to the list.

Adding 1 to the list.
Adding 2 to the list.
Adding 3 to the list.
Adding 4 to the list.
Adding 5 to the list.
Elemnet was:0
Elemnet was:1
Elemnet was:2
Elemnet was:3
Elemnet was:4
Elemnet was:5

 

转载于:https://www.cnblogs.com/foremostxl/p/9375785.html

你可能感兴趣的文章
CodeForces - 878A Short Program(位运算)
查看>>
路冉的JavaScript学习笔记-2015年1月23日
查看>>
Mysql出现(10061)错误提示的暴力解决办法
查看>>
2018-2019-2 网络对抗技术 20165202 Exp3 免杀原理与实践
查看>>
NPM慢怎么办 - nrm切换资源镜像
查看>>
CoreData 从入门到精通(四)并发操作
查看>>
Swift - UIView的常用属性和常用方法总结
查看>>
Swift - 异步加载各网站的favicon图标,并在单元格中显示
查看>>
Java编程思想总结笔记Chapter 5
查看>>
[LeetCode]662. Maximum Width of Binary Tree判断树的宽度
查看>>
WinForm聊天室
查看>>
Python 从零学起(纯基础) 笔记(一)
查看>>
【Python学习笔记】1.基础知识
查看>>
梦断代码阅读笔记02
查看>>
Java 线程安全问题
查看>>
selenium学习中遇到的问题
查看>>
大数据学习之一——了解简单概念
查看>>
P1-13:集成日志组件 logback 2彩色日志
查看>>
Linux升级内核教程(CentOS7)
查看>>
Lintcode: Partition Array
查看>>