×
思维导图备注
Python 教程
首页
下载
阅读记录
书签管理
我的书签
添加书签
移除书签
遍历元组
浏览
804
扫码
分享
2020-12-15 15:31:23
遍历元组
遍历元组
thistuple
=
(
"apple"
,
"banana"
,
"cherry"
)
for
x
in
thistuple
:
print
(
x
)
上一篇:
下一篇:
Copyright © 2017-2021 jishuchi.com 版权所有.
京ICP备17028049号-1
Python 教程
Python 教程
Python 简介
Python 入门
Python 语法
Python 注释
Python 变量
Python 数据类型
Python 数字
Python Casting
Python 字符串
Python 布尔
Python 运算符
Python 列表
Python 元组
Python 集合
Python 字典
Python If … Else
Python While 循环
Python For 循环
Python 函数
Python Lambda
Python 数组
Python 类/对象
Python 继承
Python 迭代
Python 作用域
Python 模块
Python 日期
Python JSON
Python RegEx
Python PIP
Python Try Except
Python 命令输入
Python 字符串格式化
Python 文件处理
Python 文件处理
Python 文件读取
Python 文件写入/创建
Python 文件删除
Python NumPy
NumPy 简介
NumPy 入门
NumPy 数组创建
NumPy 数组索引
NumPy 数组裁切
NumPy 数据类型
NumPy 副本/视图
NumPy 数组形状
NumPy 数组重塑
NumPy 数组迭代
NumPy 数组连接
NumPy 数组拆分
NumPy 数组搜索
NumPy 数组排序
NumPy 数组过滤
NumPy 随机
NumPy ufuncs
Python 机器学习
入门
平均中位数模式
标准差
百分位数
数据分布
正态数据分布
散点图
线性回归
多项式回归
多元回归
缩放
训练/测试
决策树
Python MySQL
MySQL 入门
MySQL Create Database
MySQL Create Table
MySQL Insert
MySQL Select
MySQL Where
MySQL Order By
MySQL Delete
MySQL Drop Table
MySQL Update
MySQL Limit
MySQL Join
Python MongoDB
MongoDB 入门
MongoDB 创建数据库
MongoDB 创建集合
MongoDB Insert
MongoDB Find
MongoDB Query
MongoDB Sort
MongoDB Delete
MongoDB 删除集合
MongoDB Update
MongoDB Limit
Python 参考手册
Python 参考概览
Python 内建函数
Python 字符串方法
Python 列表方法
Python 字典方法
Python 元组方法
Python 集合方法
Python 文件方法
Python 关键字
Python 模块参考手册
随机模块
请求模块
Python How To
删除列表重复项
反转字符串
Python 实例
打印 "Hello World"
Python 中的注释
文档字符串(Docstrings)
创建变量
同时输出文本和变量
把变量添加到另一个变量
验证对象的类型
创建整数
创建浮点数
创建带有“e”的科学数字以表示 10 的幂
创建复数
Casting - 整数
Casting - 浮点
Casting - 字符串
获取字符串位置 1 处的字符
子串。获取从位置 2 到位置 5 (不包括)的字符。
删除字符串的开头或结尾的空格
返回字符串的长度
把字符串转换为小写
把字符串转换为大写
把字符串替换为另一个字符串
把字符串拆分为子串
加运算符
减运算符
乘运算符
除运算符
取模运算符
赋值运算符
创建列表
访问列表项
更改列表项目的值
遍历列表
检查列表项是否存在
获取列表的长度
把一个项目添加到列表末端
把一个项目添加到指定索引
删除项目
删除最后一项
删除指定索引的项目
清空列表
使用 list()构造函数来生成列表
创建元组
访问元组项目
更改元组值
遍历元组
检查某个元组项目是否存在
获取元组的长度
删除元组
使用 tuple()构造函数创建元组
创建集合
遍历集合
检查项目是否存在
向集合添加一个项目
向集合添加多个项目
获取集合的长度
删除集合中的一个项目
使用 discard()方法删除集合中的一个项目
使用 pop()方法删除集合中的最后一项
清空集合
删除集合
使用 set()构造函数创建集合
创建字典
访问字典中的项目
更改字典中某个具体项目的值
逐一打印字典中的所有键名
逐一打印字典中的所有值
使用 values()函数返回字典的值
使用 items()遍历键和值
检查某个键是否存在
向字典添加一个项目
从字典删除一个项目
清空字典
使用 dict()构造函数创建字典
if 语句
elif 语句
else 语句
简写 if
简写 if … else
and 关键字
or 关键字
while 循环
在 while 循环中使用 break 语句
在 while 循环中使用 continue 语句
for 循环
遍历字符串
在 for 循环中使用 break 语句
在 for 循环中使用 continue 语句
在 for 循环中使用 range()函数
for 循环中的 Else
嵌套 for 循环
创建并调用函数
函数参数
默认参数值
使函数返回值
递归
将作为参数传递的数字加 10 的 lambda 函数
将参数 a 与参数 b 相乘的 lambda 函数
将参数 a、b 和 c 相加 lambda 函数
创建数组
访问数组元素
更改数组元素的值
获取数组的长度
遍历数组中的所有元素
向数组添加元素
从数组删除元素
创建类
创建对象
init()函数
创建对象方法
self 参数
修改对象属性
删除对象属性
删除对象
从元组返回迭代器
从字符串返回迭代器
遍历迭代器
创建迭代器
停止迭代器
使用模块
模块中的变量
对模块重命名
内置模块
使用 dir()函数
从模块导入
导入 datetime 模块并显示当前日期
返回年份和 weekday 的名称
创建 date 对象
strftime()方法
把 JSON 转换为 Python
把 Python 转换为 JSON
把 Python 对象转换为 JSON 字符串
转换包含所有合法数据类型的 Python 对象
使用 indent 参数来定义缩进量
使用 separators 参数来更改默认分隔符
使用 sort_keys 参数指定结果是否应该排序
检索字符串是否以 "China" 开头并以 "country" 结尾
使用 findall()函数
使用 search()函数
使用 split()函数
使用 sub()函数
使用包
当发生错误时,打印一条消息。
多个异常
使用 else 关键字定义没有出现错误时执行的代码块
使用 finally 块执行代码,不论 try 块是否引发了错误
读取文件
只读取文件的一部分
读取文件中的一行
遍历文件的所有行,逐行读取整个文件
创建与数据库的连接
在 MySQL 中创建数据库
检查数据库是否存在
创建表
检查表是否存在
在建表时创建主键
在表格中插入记录
插入多行
获取所插入的 ID
选取表中的所有记录
选取表中的某些列
使用 fetchone()方法读取表中的单行
使用筛选器来选取
通配符
防止 SQL 注入
按字母顺序对表的结果进行排序
按降序对结果进行排序(按字母顺序反向)
从已有表中删除记录
防止 SQL 注入
删除已有的表
删除表,如果存在。
更新表中的已有记录
防止 SQL 注入
限制查询返回的记录数
根据两个或多个表之间的相关列合并行
左联接(LEFT JOIN)
右联接(RIGHT JOIN)
创建数据库
检查数据库是否存在
创建集合
检查集合是否存在
插入集合
返回 id 字段
插入多个文档
插入具有指定 ID 的多个文档
查找集合中的首个文档
查找集合中的所有文档
只查找某些字段
过滤结果
高级查询
通过正则表达式来过滤
按字母顺序对结果排序
按降序对结果排序(反向字母顺序)
删除文档
删除多个文档
删除集合中的所有文档
删除集合
更新文档
更新多个/所有文档
限制结果
Python 参考
Python abs() 函数
Python all() 函数
Python any() 函数
Python ascii() 函数
Python bin() 函数
Python bool() 函数
Python bytearray() 函数
Python bytes() 函数
Python callable() 函数
Python chr() 函数
Python compile() 函数
Python complex() 函数
Python delattr() 函数
Python dict() 函数
Python dir() 函数
Python divmod() 函数
Python enumerate() 函数
Python eval() 函数
Python exec() 函数
Python filter() 函数
Python float() 函数
Python format() 函数
Python frozenset() 函数
Python getattr() 函数
Python globals() 函数
Python hasattr() 函数
Python hex() 函数
Python id() 函数
Python input() 函数
Python int() 函数
Python isinstance() 函数
Python issubclass() 函数
Python iter() 函数
Python len() 函数
Python list() 函数
Python locals() 函数
Python map() 函数
Python max() 函数
Python memoryview() 函数
Python min() 函数
Python next() 函数
Python object() 函数
Python oct() 函数
Python open() 函数
Python ord() 函数
Python pow() 函数
Python print() 函数
Python range() 函数
Python reversed() 函数
Python round() 函数
Python set() 函数
Python setattr() 函数
Python slice() 函数
Python sorted() 函数
Python str() 函数
Python sum() 函数
Python super() 函数
Python tuple() 函数
Python type() 函数
Python vars() 函数
Python zip() 函数
Python and 关键字
Python as 关键字
Python assert 关键字
Python break 关键字
Python class 关键字
Python continue 关键字
Python def 关键字
Python del 关键字
Python elif 关键字
Python else 关键字
Python except 关键字
Python False 关键字
Python finally 关键字
Python for 关键字
Python from 关键字
Python global 关键字
Python if 关键字
Python import 关键字
Python in 关键字
Python is 关键字
Python lambda 关键字
Python nonlocal 关键字
Python not 关键字
Python or 关键字
Python pass 关键字
Python raise 关键字
Python return 关键字
Python try 关键字
Python while 关键字
Python None 关键字
Python True 关键字
Python 元组 count() 方法
Python 元组 index() 方法
Python 列表 append() 方法
Python 列表 clear() 方法
Python 列表 copy() 方法
Python 列表 count() 方法
Python 列表 extend() 方法
Python 列表 index() 方法
Python 列表 insert() 方法
Python 列表 pop() 方法
Python 列表 remove() 方法
Python 列表 reverse() 方法
Python 列表 sort() 方法
Python 集合 add() 方法
Python 集合 clear() 方法
Python 集合 copy() 方法
Python 集合 difference() 方法
Python 集合 difference_update() 方法
Python 集合 discard() 方法
Python 集合 intersection() 方法
Python 集合 intersection_update() 方法
Python 集合 isdisjoint() 方法
Python 集合 issubset() 方法
Python 集合 issuperset() 方法
Python 集合 pop() 方法
Python 集合 remove() 方法
Python 集合 symmetric_difference() 方法
Python 集合 symmetric_difference_update() 方法
Python 集合 union() 方法
Python 集合 update() 方法
Python 字典 clear() 方法
Python 字典 copy() 方法
Python 字典 fromkeys() 方法
Python 字典 get() 方法
Python 字典 items() 方法
Python 字典 keys() 方法
Python 字典 pop() 方法
Python 字典 popitem() 方法
Python 字典 setdefault() 方法
Python 字典 update() 方法
Python 字典 values() 方法
Python 文件 close() 方法
Python 文件 fileno() 方法
Python 文件 flush() 方法
Python 文件 isatty() 方法
Python 文件 read() 方法
Python 文件 readable() 方法
Python 文件 readline() 方法
Python 文件 readlines() 方法
Python 文件 seek() 方法
Python 文件 seekable() 方法
Python 文件 tell() 方法
Python 文件 truncate() 方法
Python 文件 writable() 方法
Python 文件 write() 方法
Python 文件 writelines() 方法
Python 字符串 capitalize() 方法
Python 字符串 casefold() 方法
Python 字符串 center() 方法
Python 字符串 count() 方法
Python 字符串 encode() 方法
Python 字符串 endswith() 方法
Python 字符串 expandtabs() 方法
Python 字符串 find() 方法
Python 字符串 format() 方法
Python 字符串 index() 方法
Python 字符串 isalnum() 方法
Python 字符串 isalpha() 方法
Python 字符串 isdecimal() 方法
Python 字符串 isdigit() 方法
Python 字符串 isidentifier() 方法
Python 字符串 islower() 方法
Python 字符串 isnumeric() 方法
Python 字符串 isprintable() 方法
Python 字符串 isspace() 方法
Python 字符串 istitle() 方法
Python 字符串 isupper() 方法
Python 字符串 join() 方法
Python 字符串 ljust() 方法
Python 字符串 lower() 方法
Python 字符串 lstrip() 方法
Python 字符串 partition() 方法
Python 字符串 replace() 方法
Python 字符串 rfind() 方法
Python 字符串 rindex() 方法
Python 字符串 rjust() 方法
Python 字符串 rpartition() 方法
Python 字符串 rsplit() 方法
Python 字符串 rstrip() 方法
Python 字符串 split() 方法
Python 字符串 splitlines() 方法
Python 字符串 startswith() 方法
Python 字符串 strip() 方法
Python 字符串 swapcase() 方法
Python 字符串 title() 方法
Python 字符串 upper() 方法
Python 字符串 zfill() 方法
暂无相关搜索结果!
本文档使用
技术池
构建
×
分享,让知识传承更久远
×
文章二维码
手机扫一扫,轻松掌上读
×
文档下载
请下载您需要的格式的文档,随时随地,享受汲取知识的乐趣!
PDF
文档
EPUB
文档
MOBI
文档
×
书签列表
×
阅读记录
阅读进度:
0.00%
(
0/0
)
重置阅读进度