print(temp_
list
)
print(type(temp_
list
))
a =
tuple
(temp_
list
) #将temp_
list
进行强制
转换
print(a)
print(type(a)) #查看是否
转换
成功
(2)
tuple
转
为
list
:
temp_tupl...
此博客提供一种将
list
转
为
tuple
,并提取相应的矩阵的方法,代码如下:dates = pd.date_range('20130101', periods=6)
df = pd.DataFrame(np.random.randn(6,4), index=dates, columns=
list
('ABCD'))
print df
tf=
tuple
(df.values)
m=np.random.ran
这篇文章主要介绍了简单了解
python
元组
tuple
相关原理,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
元组
tuple
和
列表
List
类似,
元组
有如下特点:
1.由一个或者多个数据构成,数据的类型可以不相同也可以相同;
2.
元组
中的数据需要写在()中括号内部,数据与数据
之间
用逗号隔开;
3.
元组
是一个有序的集合,下标索引默认重 0 开始,和字符串类似;
4.
元组
的数据不能被修改
元组
其实也称为只读
列表
,
列表
支持的函数
元组
同样也支持,唯一区别是
元组
tuple
中的数据不能被修改,这就意味着不能删除
元组
tuple
中的数据,也不能直接给
元组
t
import random
List
_Test =
list
(range(5000))
print(The Size of
List
is : {}.format(Size(
List
_Test)))
Set_Test = set(range(5000))
print(The Size of Set is : {}.format(Size(Set_Test)))
Tuple
_Test = tupl
一、创建
元组
复制代码 代码如下:tup1 = (‘physics’, ‘chemistry’, 1997, 2000);tup2 = (1, 2, 3, 4, 5 );tup3 = “a”, “b”, “c”, “d”;创建空
元组
复制代码 代码如下:tup1 = ();
元组
中只包含一个元素时,需要在元素后面添加逗号来消除歧义复制代码 代码如下:tup1 = (50,);
元组
与字符串类似,下标索引从0开始,可以进行截取,组合等。二、访问
元组
元组
可以使用下标索引来访问
元组
中的值,如下实例:复制代码 代码如下:#!/usr/bin/
python
tup1 = (‘physics’, ‘chemist
list
_a = (1, 9, 10, 6)
print(
list
_a) # 打印结果 (1, 9, 10, 6)
元组
是带小括号的
list
_b =
list
(
list
_a)
print(
list
_b) # 打印结果 [1, 9, 10, ..
temp_
list
= [1,2,3,4,5]
将temp_
list
进行强制
转换
:
tuple
(temp_
list
)
查看是否
转换
成功:print type(temp_
list
)
tuple
转
为
list
:
temp_
tuple
= (1,2,3)
方法类似,也是进行强制
转换
即可:
list
(temp_
tuple
)
查看是否
转换
成功:print ty