Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Python 教程

Python 主页 Python 简介 Python 入门 Python 语法 Python 注释 Python 变量 Python 数据类型 Python 数字 Python 类型转换 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 日期 Python 数学 Python JSON Python 正则表达式 Python PIP Python Try...Except Python 用户输入 Python 字符串格式化

文件处理

Python 文件处理 Python 读取文件 Python 写入/创建文件 Python 删除文件

Python 模块

NumPy 教程 Pandas 教程 SciPy 教程 Django 教程

Python Matplotlib

Matplotlib 简介 Matplotlib 入门 Matplotlib Pyplot Matplotlib 绘图 Matplotlib 标记 Matplotlib 线 Matplotlib 标签 Matplotlib 网格 Matplotlib 子图 Matplotlib 散点图 Matplotlib 条形图 Matplotlib 直方图 Matplotlib 饼图

机器学习

入门 平均值 中位数 众数 标准差 百分位数 数据分布 正态数据分布 散点图 线性回归 多项式回归 多元回归 缩放 训练/测试 决策树 混淆矩阵 层次聚类 逻辑回归 网格搜索 分类数据 K-means Bootstrap Aggregation 交叉验证 AUC - ROC 曲线 K-最近邻

Python MySQL

MySQL 入门 MySQL 创建数据库 MySQL 创建表 MySQL 插入 MySQL 选择 MySQL Where MySQL Order By MySQL 删除 MySQL 删除表 MySQL 更新 MySQL Limit MySQL Join

Python MongoDB

MongoDB 入门 MongoDB 创建数据库 MongoDB 集合 MongoDB 插入 MongoDB 查找 MongoDB 查询 MongoDB 排序 MongoDB 删除 MongoDB 删除集合 MongoDB 更新 MongoDB Limit

Python 参考

Python 概述 Python 内置函数 Python 字符串方法 Python 列表方法 Python 字典方法 Python 元组方法 Python 集合方法 Python 文件方法 Python 关键字 Python 异常 Python 词汇表

模块参考

Random 模块 Requests 模块 Statistics 模块 Math 模块 cMath 模块

Python 如何做

删除列表重复项 反转字符串 加两个数

Python 示例

Python 示例 Python 编译器 Python 练习 Python 测验 Python 服务器 Python 面试问答 Python 集训营 Python 证书

Python 元组


mytuple = ("apple", "banana", "cherry")

元组

元组用于在单个变量中存储多个项。

元组是 Python 中用于存储数据集合的 4 种内置数据类型之一,另外 3 种是 列表集合字典,它们都具有不同的特性和用途。

元组是有序且不可变的集合。

元组用圆括号括起来。

示例

创建元组

thistuple = ("apple", "banana", "cherry")
print(thistuple)
自己试试 »

元组项

元组项是有序的、不可变的,并且允许重复值。

元组项有索引,第一项的索引为[0],第二项的索引为[1] 等等。


有序

当我们说元组是有序的时候,这意味着这些项有定义的顺序,并且该顺序不会改变。


不可变

元组是不可变的,这意味着我们不能在元组创建后改变、添加或删除项。


允许重复

由于元组是有索引的,因此它们可以包含具有相同值的项

示例

元组允许重复值

thistuple = ("apple", "banana", "cherry", "apple", "cherry")
print(thistuple)
自己试试 »


元组长度

要确定元组有多少项,请使用 len() 函数

示例

打印元组中的项数

thistuple = ("apple", "banana", "cherry")
print(len(thistuple))
自己试试 »

创建只有一个项的元组

要创建一个只有一个项的元组,您必须在该项后面添加一个逗号,否则 Python 不会将其识别为元组。

示例

只有一个项的元组,记住逗号

thistuple = ("apple",)
print(type(thistuple))

#不是元组
thistuple = ("apple")
print(type(thistuple))
自己试试 »

元组项 - 数据类型

元组项可以是任何数据类型

示例

字符串、整数和布尔数据类型

tuple1 = ("apple", "banana", "cherry")
tuple2 = (1, 5, 7, 9, 3)
tuple3 = (True, False, False)
自己试试 »

元组可以包含不同的数据类型

示例

包含字符串、整数和布尔值的元组

tuple1 = ("abc", 34, True, 40, "male")
自己试试 »

type()

从 Python 的角度来看,元组被定义为数据类型为 'tuple' 的对象

<class 'tuple'>

示例

元组的数据类型是什么?

mytuple = ("apple", "banana", "cherry")
print(type(mytuple))
自己试试 »

tuple() 构造函数

也可以使用 tuple() 构造函数来创建一个元组。

示例

使用 tuple() 方法创建元组

thistuple = tuple(("apple", "banana", "cherry")) # 注意双圆括号
print(thistuple)
自己试试 »

Python 集合(数组)

Python 编程语言中有四种集合数据类型

  • 列表 是一个有序且可更改的集合。允许重复成员。
  • 元组 是一个有序且不可更改的集合。允许重复成员。
  • 集合 是一个无序、不可更改*且无索引的集合。没有重复成员。
  • 字典 是一个有序**且可更改的集合。没有重复成员。

*集合是不可更改的,但您可以随时删除和/或添加项。

**从 Python 3.7 版本开始,字典是有序的。在 Python 3.6 及更早版本中,字典是无序的。

在选择集合类型时,了解该类型的属性很有用。为特定数据集选择正确的类型可能意味着保留含义,并且可能意味着提高效率或安全性。



×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.