day 14 元组
Posted 不要被骄傲遮蔽了双眼
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了day 14 元组相关的知识,希望对你有一定的参考价值。
1. 使用场景?
# 列表list 数据类型相同, #rwx文件 100个人的名字, # 用字典 dict [\'dɪkt] 很多信息描述1个人, # tuple [ˈtʌpəl] #只读文件 不能修改的重要数据 元组 只能查看 (大体和list差不多)
1.显示的告知别人,此处数据不可更改
2.数据库连接配置信息
2.元组特性
In [18]: tuple1 = (11,22,33) In [19]: type(tuple1) Out[19]: tuple In [21]: tuple1[0] = 99 --------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-21-9f0cae5d4fd1> in <module>() ----> 1 tuple1[0] = 99 TypeError: \'tuple\' object does not support item assignment
3.元组的功能
4. 元组拆包
以上是关于day 14 元组的主要内容,如果未能解决你的问题,请参考以下文章