python学习-18 元组
tuple
1.元组tuple类似列表,由小括号()括住,其中的元素不可被修改,不能被增加或删除、
tu = (222,222123123,("小胡子",444),12341,"你好啊",["小明",123],)
print(tu)
运行结果:
(222, 222123123, ('小胡子', 444), 12341, '你好啊', ['小明', 123]) Process finished with exit code 0
ps:建议在最后加一个逗号,便于分辨(不会报错,但列表会)
2.取值
通过索引:
tu = (222,222123123,("小胡子",444),12341,"你好啊",["小明",123],)
a = tu[0]
print(a)
运行结果:
222 Process finished with exit code 0
通过切片:
tu = (222,222123123,("小胡子",444),12341,"你好啊",["小明",123],)
a = tu[0:5]
print(a)
运行结果:
(222, 222123123, ('小胡子', 444), 12341, '你好啊') Process finished with exit code 0
for循环:
tu = (222,222123123,("小胡子",444),12341,"你好啊",["小明",123],)
for a in tu : print(a)
运算结果:
222
222123123
('小胡子', 444)
12341
你好啊
['小明', 123] Process finished with exit code 0
3.转换
转换成列表:
tu = (222,"你好啊",["小明",123],)
a = list(tu) print(a)
运行结果
[222, '你好啊', ['小明', 123]] Process finished with exit code 0
转换成字符串:
tu = (222,"你好啊",["小明",123],)
b =" "
for a in tu:
b = b + str(a) print(b)
运行结果:
222你好啊['小明', 123] Process finished with exit code 0
ps:元组基本功能和列表是一样的。
4.元组一级元素无法增删改,但是里面的元素如果是列表是可以增删改的
tu = (222,"你好啊",["小明",123],)
tu[2][0]=132 print(tu)
运算结果:
(222, '你好啊', [132, 123]) Process finished with exit code 0
5.元组的方法
count 获取元素的个数
index 获取元素的索引
同列表的方法。
python学习-18 元组的更多相关文章
- python学习之元组与文件
元组 元组是最后一个python集合类型.元组由简单的对象构成,元组与列表非常相似,只不过元组不能在原处修改,并且通常写成圆括号,虽然元组部支持任何方法调用,但元组具有列表的大多数属性. 实际应用中的 ...
- python学习Day6 元组、字典、集合set三类数据用法、深浅拷贝
一.深浅拷贝 1. 值拷贝 ls1 = ls2 不开辟空间,指针跟着走.(直接将ls1中存放的地址拿过来,内存中不会开辟新的空间,所以你怎么变,我也跟着变.)(ls1内部的所有类型的值发生改变,l ...
- Python学习-列表元组字典操作
一.列表 列表是Python的基本数据类型之一,它是以 [] 括起来的,内部成员用逗号隔开.里面可以存放各种数据类型. # 例如: list2 = ['jason', 2, (1, 3), ['war ...
- Python学习笔记——元组
1.创建一个元组并给它赋值 >>> aTuple = (123,'abc',4.56,['inner','tuple'],7-9j) >>> aTuple (123 ...
- python学习之元组
#coding:utf-8# __author__ = 'Administrator'#元组:不可变序列 #空元组mm=()print mm#只有一个值的元组mm=(1,)print mmx=1,2, ...
- python学习:元组和嵌套
tuple(元组):只是可读,不可以修改# tup1 = () #空元组# tup2 = (20,) #元组内有一个元素,需要在元素后添加逗号 a = (1,2,3,4)print(a[1])a[1] ...
- Python学习--18 进程和线程
线程是最小的执行单元,而进程由至少一个线程组成.如何调度进程和线程,完全由操作系统决定,程序自己不能决定什么时候执行,执行多长时间. 进程 fork调用 通过fork()系统调用,就可以生成一个子进程 ...
- Python学习-18.Python中的错误处理(三)
在某些情况下,我们需要定义自己的异常并且抛出 先定义一个错误: class MyError(BaseException): def __init__(self): pass 上面定义了一个叫MyErr ...
- Python学习---列表/元组/字典/字符串/set集合/深浅拷贝1207【all】
1.列表 2.元组 3.字典 4.字符串 5.set集合 6.深浅拷贝
随机推荐
- [bzoj 4650][NOI 2016]优秀的拆分
传送门 Description 如果一个字符串可以被拆分为\(AABB\) 的形式,其中$ A$和 \(B\)是任意非空字符串,则我们称该字符串的这种拆分是优秀的. 例如,对于字符串\(aabaaba ...
- 【零基础】神经网络优化之mini-batch
一.前言 回顾一下前面讲过的两种解决过拟合的方法: 1)L0.L1.L2:在向前传播.反向传播后面加个小尾巴 2)dropout:训练时随机“删除”一部分神经元 本篇要介绍的优化方法叫mini-bat ...
- 常用的etl工具比较
ETL是什么? ETL,是英文 Extract-Transform-Load 的缩写,用来描述将数据从来源端经过抽取(extract).转换(transform).加载(load)至目的端的过程.(数 ...
- Selenium: 利用select模块操作下拉框
在利用selenium进行UI自动化测试过程中,经常会遇到下拉框选项,这篇博客,就介绍下如何利用selenium的Select模块来对标准select下拉框进行操作... 首先导入Select模块: ...
- windows系统下Jenkins 持续集成安装使用
先要下载安装Tomcat,基于Java的web项目可以通过Tomcat运行.下载Jenkins,注意要安装在Tomcat的webapps目录下.安装完Jenkins会自动通过浏览器打开http://l ...
- Uploadifive 上传'fileType'格式如何限制?
Uploadifive: 'fileType':[ "application/pdf", "application/msword", "applica ...
- C++ .h 与 .hpp 的区别
原文地址:http://blog.csdn.net/f_zyj/article/details/51735416 .hpp,本质就是将.cpp的实现代码混入.h头文件当中,定义与实现都包含在同一文件, ...
- presto计算日期间隔天数或者小时间隔——date_diff函数使用
“Presto是Facebook最新研发的数据查询引擎,可对250PB以上的数据进行快速地交互式分析.据称该引擎的性能是 Hive 的 10 倍以上.”,亲身用过之后,觉得比hive快了10倍不止. ...
- Somatic hypermutation (or SHM) is a cellular mechanism by which the immune system adapts to the new foreign elements that confront it (e.g. microbes), as seen during class switching. Somatic hypermut
Somatic hypermutation (or SHM) is a cellular mechanism by which the immune system adapts to the new ...
- SpringBoot之返回json数据
一.创建一个springBoot个项目 二.编写实体类 /** * 返回Json数据实体类 */ public class User { private int id; private String ...