元组(如1-相框.一家人去旅行拍照)
元组中的值不能更改
但我们可以将元组分配给列表
我们可以将元组相乘,但不能修改
我们可以连接两个元组
我们可以使用索引访问
拆包
我们可以将元组转换为列表
o_trip=('乌蒂','2024-1-1','山')
m_trip=('慕那尔','2024-1-3','瀑布')
kumarkom_trip=('kumarakom','2024-1-5','晚餐')
print('乌蒂之旅',o_trip,type(o_trip))
photo_album=[o_trip,m_trip,kumarkom_trip]
打印(相册)
位置=o_trip[0]
print('位置',位置)
打印(m_trip)
位置、日期、visted=m_trip #已创建元组
打印(m_trip)
检查元组值是否存在
例如
double_o_fun=o_trip*2
打印(double_o_fun)
O/p
('Ooty', '2024-1-1', 'Mountain', 'Ooty', '2024-1-1', 'Mountain')-->() 大括号表示元组
检查元组的长度
例如。
打印(len(相册))
欧/普
3
我们可以将Tuple改为List
例如
o_trip=('乌蒂','2024-1-1','山')
m_trip=('慕那尔','2024-1-3','瀑布')
kumarkom_trip=('kumarakom','2024-1-5','晚餐')
o_list=列表(o_trip)
打印(o_list)
o/p
['Ooty', '2024-1-1', 'Mountain']-->[] 大括号表示 List
SET-(并集、交集、差集)
我们无法添加重复的项目
我们可以添加值
我们可以删除值
我们可以检查值是否存在
它有独特的价值
这里我们不能使用索引,因为它是无序的
my_garden={'玫瑰','百合','茉莉花'}
打印(我的花园,类型(我的花园))
欧/普
{'玫瑰'、'百合'、'茉莉花'}
my_garden.add('万寿菊')
打印(我的花园)
欧/普
{'玫瑰'、'百合'、'茉莉花'、'万寿菊'}
my_garden.add('玫瑰')
打印(我的花园)
欧/普
{'玫瑰'、'百合'、'茉莉花'、'万寿菊'}
my_garden.remove('玫瑰')
打印(我的花园)
欧/普
{'百合'、'茉莉花'、'万寿菊'}
is_rose_in_mygarden='玫瑰' in my_garden
打印(is_rose_in_mygarden)
欧/普
错误的
is_marigold_in_mygarden='万寿菊' in my_garden
打印(is_marigold_in_mygarden)
欧/普
真的
my_garden={'玫瑰','百合','茉莉花'}
打印(我的花园)
n_garden={'玫瑰','莲花','木槿'}
打印(n_garden)
comon_flowe=my_garden.intersection(n_garden)
打印(comon_flowe)
o/p-
{'玫瑰'、'百合'、'茉莉花'}
{'木槿'、'玫瑰'、'莲花'}
{'玫瑰'}
差异 - 查找两组的差异
my_garden={'玫瑰','百合','茉莉花'}
打印(我的花园)
n_garden={'玫瑰','莲花','木槿'}
打印(n_garden)
diff_flowe=my_garden.difference(n_garden)
打印(diff_flowe)
o/p
{'玫瑰'、'百合'、'茉莉花'}
{'木槿'、'玫瑰'、'莲花'}
{'百合','茉莉花'}
Union - 组合元组
my_garden={'玫瑰','百合','茉莉花'}
打印(我的花园)
n_garden={'玫瑰','莲花','木槿'}
打印(n_garden)
union_flowe=my_garden.union(n_garden)
打印(union_flowe)
o/p
{'玫瑰'、'茉莉'、'芙蓉'、'百合'、'莲花'}
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3