week02_python内置数据结构__03

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了week02_python内置数据结构__03相关的知识,希望对你有一定的参考价值。

元组tuple

一个有序的元素组成的集合
使用小括号( ) 表示

元组是不可变对象

元组的定义 初始化

  • > 定义

    tuple() -> empty tuple
    tuple(iterable) -> tuple initialized from iterable‘s items

    t = tuple() #工厂方法
    t = ()
    t = tuple(range(1,7,2)) # iteratable
    t = (1,) # 一个元素元组的定义
    t = (1,)* 5 #(1, 1, 1, 1, 1)

以上是关于week02_python内置数据结构__03的主要内容,如果未能解决你的问题,请参考以下文章

week02_python内置数据结构__01

week02_python内置数据结构__随机数

week01_python基础语法__02

WEEK8:Python网络编程 Socket编程

python16_day03集合函数递归内置函数

python_03